Mandana_ns
New Member
In BASIC print statements can look like this:\[code\]100 PRINT "Copyright, Adrian McMenamin","maybe"\[/code\]Which should put a tab space between the first statement and the second.I am working on a DSL/interpreter for BASIC in Groovy/Java which needs to parse this line and produce something like:\[code\]print "Copyright, Adrian McMenamin", " ","maybe"\[/code\](As Groovy interprets the comma as merely separating the parameters of the print function.)So what regular expression will differentiate between the commas not inside the quote and those that are (don't worry about the PRINT or the line number etc)?