You can use Find & Replace in RegEx mode. The "FF" character is an ASCII 12 character (you can see it in the Notepad ++ ASCII table), so you can match it in RegEx with \x0C
( 0C
is 12 in hexadecimal format).
To remove it, search for " \x0C
" and replace it with "" (nothing).
To replace it with line breaks, replace it with " \r\n
" on Windows (" \n
" on Linux).
To add a line break ahead to "ENGLISH", search for " (ENGLISH)
" and replace it with " \r\n\1
". Note that this will add a line break in each case of the string “ENGLISH”, even if part of the larger word: “MYENGLISHBOOK” will be split as “MY” and “ENGLISHBOOK”.
To add a line break before the word "ENGLISH" (but not when it happens inside a larger word), search for " \b(ENGLISH)\b
" ( \b
matches the word boundary) and replace it with " \r\n\1
"
Oxtaz source share