Reqular expression for 11 digit phone number with 09 prefix

后端 未结 3 601
独厮守ぢ
独厮守ぢ 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条回答
  •  长情又很酷
    2021-01-26 14:32

    Using a NSString method:

    - (BOOL)validateAlphabets: (NSString *)text {
        NSString *regEx = @"09\\d{9}";
        NSRange range = [text rangeOfString:regEx options:NSRegularExpressionSearch];
        return range.location != NSNotFound;
    }
    

提交回复
热议问题