Hi,
Example – client has 3 numbers, but they are in no sequential order (ie I can’t do a regex on it)
0894881300
0895655000
0886652100
Currently I’m creating 3 routes. Is it possible to get all their numbers in 1 route?
Hi,
Example – client has 3 numbers, but they are in no sequential order (ie I can’t do a regex on it)
0894881300
0895655000
0886652100
Currently I’m creating 3 routes. Is it possible to get all their numbers in 1 route?
Hi Matt,
In fact, you can put three numbers together by regex, but just using | (or sign)
That is
(0894881300|0895655000|0886652100)