ubuntu-buildroot/output/build/host-gawk-5.2.0/test/mpgforcenum.awk

6 lines
144 B
Awk

BEGIN {
split("5apple", f) # make a strnum
x = f[1]+0 # force strnum conversion to number or string
print typeof(f[1]) # should be string
}