
Modified by SimMX
  -updated to pcre v8.39, dated 2016...
  -more reg submatches, before it was around cca 10

/** this did not match in original pcre-8.10, in 8.39 it does as it should
RegExp re(
	"(stuff)\\s+(\\d+)?\\s*(stuffx)?\\s*([a-zA-Z_][a-zA-Z0-9_-]*=(?:\".*\"|\'.*\'|[[:graph:]]*) )*\\s*(\".*?\");"
	"|(stuff2)\\s+(\".*?\");"
	"|(stuff3)\\s+(\".*?\".*?);"
	"|(.*?);"
	);
if(re.Match("tid nanu;"))PromptOK("matches");
*********************************************/