I'm trying to find specific numbers.
-
What If I wanted to search for a specific number for example : 3XXXXX5849
XXX are Unknown digit numbers and the length is 10 numbers in total.
thanks for help in advance. -
@logi-tech
Use the Find/replace form (Search->Find...
from the main menu).
Find what:3[0-9]{5}5849
Search Mode:Regular Expression
Here’s a useful reference on the regular expression I wrote. You could also use
3\d{5}5849
for the same effect.