(root)/
gawk-5.2.2/
test/
mpgforcenum.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
}