Home
Social Links
Website Links
SQL
Notepad++
IT Notes
Dark Mode
Notepad++ Reference
Useful Shortcuts
Ctrl + D – Duplicate line
Ctrl + L – Delete line
Ctrl + Shift + Up/Down – Move line
Common searches
\r\n
\t
Remove lines
To remove lines containing "yourtext": .*yourtext.*\R/li>
To remove lines starting with "#" (like comments): ^#.*\R/li>
\R matches any kind of line break (\r\n, \n, or \r), ensuring the line is fully removed without leaving blank space.
Regex Examples
Find: ^.*$ Replace: (your pattern)