changjx
changjx

Reputation: 397

Removing all line breaks row by row between quotation mark in notepad++?

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

Answers (1)

Shrijan Tiwari
Shrijan Tiwari

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.

Regex Example

Upvotes: 1

Related Questions