I'm trying to find LF characters that appear between double quotes. The text file I'm searching has field-value pairs in this format
msgid "text 1"
msgstr "text 2"
I'm trying to find if LF characters appear within text 1 or text 2 strings. I have tried "[^"\r\n]*\n[^"\r\n]*"
but it just picks up " msgstr "
This regex :
When applied to these strings :
Will produce this output :