I am trying to build a regex for my outbound numbers. Currently I have this ^((?:096)\d{7})$ which works for 096x xxx xxx
What I would like to have is it with or without country code ^(?:+855|855)((096)\d{7})$ I have tried this but no luck. I've been to https://regexr.com/ but still not understanding regex
What is the obvious mistake? How do I account for
What I would like to have is it with or without country code ^(?:+855|855)((096)\d{7})$ I have tried this but no luck. I've been to https://regexr.com/ but still not understanding regex
What is the obvious mistake? How do I account for