Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个正则表达式来匹配这个电话号码模式:
示例:07902848117
07796938209
07302819248
Try this, it should work. "07[3-9][0-9]{8}" What this mean is, 07 - it tries to find literally 07 [3-9] - then followed by 3 to 9, only one time [0-9] - then followed by 0 to 9 {8} - text previous to this should has at least 8 characters.