|
[\[\]\(\),;.] # punctuation (parenthesis, comma)
|
+ E\'\'(?!\') # empty escaped single quoted string
+ |
\'\'(?!\') # empty single quoted string
|
\"\"(?!\"") # empty double quoted string
|
`(?>(?:(?>[^`\\]+)|``|\\.)*)+` # anything inside backticks quotes, ungreedy
|
+ E'(?>(?:(?>[^'\\]+)|''|\\.)*)+' # anything escaped inside single quotes, ungreedy.
+ |
'(?>(?:(?>[^'\\]+)|''|\\.)*)+' # anything inside single quotes, ungreedy.
|
/\*[\ \t\r\n\S]*?\*/ # C style comments