I want to be able to replace a line break (actually remove) but only if they exist within quotes.
The string below should have the line breaks in bold removed as they are inside quotes:
eg - This is the target string "and I \r\n want some" line "breaks \r\n" to be removed but not others \r\n. Can I do that?
See image below for regex pattern. I can isolate the quotes that have line breaks in them.
Now I want to be able to find the pattern \r\n within these matches and replace them, while leaving \r\n outside of quotes alone.
