Notepad++ is probably the best text editor for Windows – and it’s FREE. It has a huge range of features for working with text files, scripts, HTML files, etc. Here are some pointers on just a few of those features. 1. Set Language to match your codeOne very nice feature of Notepad++ is the ability […]
Category: notepad++ examples
The Power of Regular Expression: use in notepad++
Check out this SlideShare Presentation: The Power of Regular Expression: use in notepad++ View more presentations from Anjesh Tuladhar.
Notepad++ : start using a real text editor
Notepad++ : start using a real text editorHave you ever used Notepad? It’s very simple, which is good. However, it lacks the power and features of more advanced text editors.Notepad++ is a free and very powerful text editor. Here are some Notepad++ features: Syntax Highlighting and Syntax Folding Print text in color User Defined Syntax […]
Notepad++: A guide to using regular expressions and extended search mode
The information in this post will benefit anyone looking to understand how to use Notepad++ extended search mode and regular expressions. Notepad++ is an excellent text editor and replacement to Microsoft’s notepad.exe. Since the release of version 4.9, the Notepad++ Find and Replace commands have been updated. It now has a new Extended search mode […]
Remove Blank Lines in a Document With Notepad++ With Extended Search Mode
Switch to Extended search mode in the Replace dialog. Find what: rnrn Replace with: (leave this blank) Press Replace All. All the blank lines are gone. * rn is a newline character (in Windows). * rnrn finds two newline characters (what you get from pressing Enter twice).