I am trying to find a regular expression that will match any line breaks that are between double quote seperated strings in a CSV file.
I am able to identify the strings between quotes using this regex:
(["])(?:\\.|[^\\])*?\1
I am able to identify line breaks using this regex: (\r\n|\r|\n)
But I'm not sure how to 'combine' the two to get the expression that I need.
The expression should match only line breaks that exist between double quotation marks.