首页 > 解决方案 > 伊拉克电话号码的java正则表达式

问题描述

我需要一个正则表达式来匹配这个电话号码模式:

示例:07902848117

07796938209

07302819248

标签: javaregex

解决方案


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.

推荐阅读