Reqular expression for 11 digit phone number with 09 prefix

后端 未结 3 633
独厮守ぢ
独厮守ぢ 2021-01-26 13:49

I am trying to write a regular expression to handle phone number which starts with \"0\" followed by \"9\" and 9 digits which can be anything within 0-9.

-(BOOL)         


        
3条回答
  •  Happy的楠姐
    2021-01-26 14:34

    I would go with

    (0|۰)(9|۹)(\d|[dummy]){9} //<-- \d being any digit
    

    Replace dummy with the numbers of the alphabet you want to support

提交回复
热议问题