Regex to search for lines which only contain text
top of page

Regex to search for lines which only contain text


If you only want to find lines in a text file which contain text and no numbers, you can use this regular expression search in NotePad++:

^[a-zA-Z]+$

. . . you can easily mark the lines which don't have digits.


bottom of page