You don’t say what the “specific character” is, and there is no specific character in your example data. But if what you want is to convert space character followed by set to newline sequence followed by set (but only if set is a whole word, not the start of some other word like setting), an easy way to do that is:
FIND WHAT = \x20set\b the \x20 means the space character; if you wanted, you could just type a space as the first character in FIND WHAT, but it’s hard to copy/paste unnoticed space character from the forum, so I use the escape sequence instead the \b is what keeps it matching set but not setting REPLACE WITH = \r\nset \r\n is the windows CRLF line ending. SEARCH MODE = Regular Expression Click REPLACE ALLThere are other ways to do it, but this one is pretty easy for a regex (regular expression) newbie to understand
(update: fixed from saying wrong \x32 to right \x20)
----
Useful References Please Read Before Posting Template for Search/Replace Questions Formatting Forum Posts Notepad++ Online User Manual: Searching/Regex FAQ: Where to find other regular expressions (regex) documentation