Notepad++ Find/Replace Regular Expressions

– [!] finds the exclamation character. – .* selects the rest of the line. – (\+.*)(Item) \+ finds the + character. | .* selects the text after the + up until the word “Item” | Item finds the string “Item” | () allow us to access whatever is inside the parentheses. The first set of parentheses may be accessed with \1 and the second set with \2. – \1\r\n\2 will take + and whatever text…

Read More