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

6 lines
144 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
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
}