Created attachment 110202 [details] awk script producing incorrect parsing Awk: A regular expression of the form /.../ containing a (potentially unpaired) double quote is not correctly parsed. Example with valid awk code (cf. attachment): ~~~awk { n = match($0, /[^"]+/, a) } /[^"]+/ { s = "I am another string" } ~~~