Find a word with a specific number on Netpad Plus
-
hi guys , I have a long list that I want to find in this list of words with the number 123
example my list
Admin1
sara123
123admin
paris1234
hello123
123my Result list
sara123
hello123just splite word+123 not example paris1234 or 123admin in my list Result how find (word+123) thanks sorry my english bad
-
maybe a regex like
\w+123\b
will do what you want? -
@Ekopalypse said in Find a word with a specific number on Netpad Plus:
\w+123\b
thats ok but in my list word abc123… or admin123! is in resualt how find only word with 123 without symbol next 123 what add to your code for only word+123 resualt complate ?
-
This post is deleted! -
Maybe this one is better
\w+123(?=\R|\h|\Z)
-
@Ekopalypse said in Find a word with a specific number on Netpad Plus:
\w+123(?=\R|\h|\Z)
thanks this beter