Notepad++ is simple yet very useful editor for developers that helps coding tonnes of lines of code effectively .A talented developer should learn the best ways to use Notepad++ efficiently .
Notepad++ regular expression search is useful when there is a large piece of code and you want to find a particular pattern of text on all the lines.I will list out some scenarios to help you understand.
1.Selecting the line that starts with <search string>
Selection will be made starting from the word till the end of the line.
(script).* – Searches the text that starts with ‘script’
2.Starting and ending characters are known
Searching would be simple if we know the exact search phrase but what if it was not constant?Thats where extended search in Notepad++ helps you.
In a sequence of lines you have to find the occurrences of the string that starts with and ends with specific characters
Example:
(2013).*AM – searches for string that starts with 2013 and ends with AM
(2013).*12 – searches for string that starts with 2013 and ends with 12
3.Regular Expression
([a-z0-9).*(12) – search a text that starts with alphabets or numbers and ends with ’12’
Also Read:
1. Auto code completion in Notepad++
2.5 Best Notepad++ plugins for Programmers