I stumbled across a problem trying to perform a regex that captures everything between two quotation marks ""
. I noticed that sometimes there is a line break that occurs in between these quotation marks which breaks the regex.
Current regex that I am using: \"((?:(?![(]).)*)\"
This does a great job of capturing everything between quotation marks except if a line break occurs.
Any regex gurus know how to also allow for line breaks, this pattern has me stumped.