Notepad++ Search For 3 Character -


i have huge textfile different names. how search names include 3 characters or 3 characters long?

press ctrl+f , enable regular expression search. search for:

[^a-za-z][a-za-z][a-za-z][a-za-z][^a-za-z] 

it'll search for:

[non-letter character] 3*[letter character] [non-letter character] 

edit: said, wanted search numbers too, how:

[^a-za-z][a-za-z][a-za-z][a-za-z][^a-za-z] 

Comments

Popular posts from this blog

c# - ItextSharp font color issue in ver 5.5.4+ -

jquery - Multiple issues with pushstate: history, loading, calling functions -

ios - retrievePeripherals deprecated in IOS7 how to substitude it with retrievePeripheralsWithIdentifiers -