Reputation: 397
I have text file in which I have to remove all line breaks row by row between quotation mark.
how could I do that using notepad++?
great thxs to all.
for example ,raw text is like:
"Acquiror Full
Business Description"
"Acquiror Short
Business Description"
desired format:
"Acquiror Full Business Description"
"Acquiror Short Business Description"
Upvotes: 0
Views: 817
Reputation: 693
You can use Regex to handle this:
Open Find& Replace Tab:
Enter this in Find Box : ^"(.*)\r\n(.*)"$
Replace with: "$1 $2"
Note: Select Search Mode as Regex.
Upvotes: 1