Can anyone provide some guidance on how I could create a dial pattern for?
1231239180 - 1231239198
Thanks in advance!
Can anyone provide some guidance on how I could create a dial pattern for?
1231239180 - 1231239198
Thanks in advance!
1231239180 1231239198
should be able to do something like:
12312391[8-9][0-8]
EDIT:
and you’ll additionally need 1231239189 (@cynjut)
[1237-9] matches any digit or letter in the brackets
X matches any digit from 0-9
Z matches any digit from 1-9
N matches any digit from 2-9
(in this example, 1,2,3,7,8,9)
. wildcard, matches one or more characters
! wildcard, matches zero or more characters immediately
That regex will miss 1231239189. That one will have to be added as an exception.
AH YES! my bad. I’ll fix the post for future readers.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.