Remove line breaks between brackets in Notepad++
This answer requires using a regex and doing Replace All as many times as the maximum number of lines that exist inside any one section.
Find what: 「([^」]*?)\R([^「]*?)
Replace with: 「\1\x20\2
Where:
-
[^」]*?
: any number of characters that are not」
, non-greedy match -
()
: group designation -
\R
: end of line -
\1\x20\2
: first group, followed by blank, followed by second group
This is what it looks like: