Basically i am looking to merge the lines starting and ending quotes
The dog is barking
"The sky
is
blue"
I am looking for an output shown below
The dog is barking
The sky is blue
Basically i am looking to merge the lines starting and ending quotes
The dog is barking
"The sky
is
blue"
I am looking for an output shown below
The dog is barking
The sky is blue
Regex: /(\r?\n)/
\r (optional) : carriage return (windows)
\n : line feed