Hi there.
Does anyone have explanation to following awk behaviour?
Fragment of my code:
print( "value root: " $0);
print("substr: " substr($0 ,3));
awk prints:
value root: ="1177" platform="3" producer="9" wap="true"
substr: false" id="1177" platform="3" producer="9"
OS is Linux Fedora Core 6. GAWK v. 3.1.5
What is strange too, this works fine on Windows version of GNU gawk.
Does anyone have explanation to following awk behaviour?
Fragment of my code:
print( "value root: " $0);
print("substr: " substr($0 ,3));
awk prints:
value root: ="1177" platform="3" producer="9" wap="true"
substr: false" id="1177" platform="3" producer="9"
OS is Linux Fedora Core 6. GAWK v. 3.1.5
What is strange too, this works fine on Windows version of GNU gawk.