How to find words of a specific character length in notepad++

notepad

I am looking to find words of 14 or more characters in Notepad++. Any ideas?

Best Answer

Unfortunately notepad++ doesn't do regex multipliers so you have to do a regex search (Search -> Find -> Search Mode = 'Regular Expression') for:

\w\w\w\w\w\w\w\w\w\w\w\w\w\w+

Each '\w' is a word character (not spaces or punctuation ect.) and the last '\w+' means that it should find one or more of them so the expression mean 14 or more word characters.

Related Question