Skip to main content
2 votes
Accepted

Add an underscore after numbers in Notepad++

Ctrl+H Find what: \d+\K[^a-z]* Replace with: _ UNTICK Match case TICK Wrap around SELECT Regular expression Replace all Explanation: \d+ # 1 or more digits \K # forget them [^a-z]* ...
Toto's user avatar
  • 18.3k
2 votes
Accepted

Searching for "part" of a word/line in Notepad++

In the Notepad++ Find window, make sure that the following options are set: Match whole word only: Unchecked Match case: Unchecked In selection: Unchecked (unless searching selected text) Search Mode ...
Seth Bembeneck's user avatar
1 vote

How do I remove a specific character from a text where it is the first character in the line, using Notepad++?

Use any text editor with regex support, like Notepad++ Search for: ^\+?1 Search mode: Regular expression Replace with: Empty string Explanation: ^: Start of line \+?: Optional literal plus sign 1: ...
phuclv's user avatar
  • 28.4k
1 vote

Notepad++ open and start monitoring

You can achieve this with the nppexec plugin. Follow the instructions to install the plugin. In Notepad++ go to Plugins > NppExec > Execute NppExec Script... Type the following command in the ...
Harvey Nash's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible