I am looking to find words of 14 or more characters in Notepad++. Any ideas?
|
If you use Notepad++ 6, you can take advantage of the new regex engine that supports PCRE (source). Press Ctrl + F and perform the following search:
Note that For more information on regular expressions, consult regular-expressions.info. |
||||
|
|
|
Unfortunately notepad++ doesn't do regex multipliers so you have to do a regex search (Search -> Find -> Search Mode = 'Regular Expression') for:
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. |
|||||||||
|
