Lines Matching refs:substr
241 $awk '{ print substr(1000+$1, 2) }' foo >foo2
312 # substr:
325 printf("xx%-39s\n", substr(x,1,39))
326 print "xx" substr("abcdef", 0, 2)
327 print "xx" substr("abcdef", 2.3, 2)
328 print "xx" substr("abcdef", -1, 2)
329 print "xx" substr("abcdef", 1, 0)
330 print "xx" substr("abcdef", 1, -3)
331 print "xx" substr("abcdef", 1, 2.3)
332 print "xx" substr("", 1, 2)
333 print "xx" substr("abcdef", 5, 5)
334 print "xx" substr("abcdef", 7, 2)
337 cmp -s foo1 foo2 || ./echo 'BAD: T.gawk substr'