How to realize the regular expression of matching Mobile / Unicom / Telecom Mobile phone number
This article is about how to match the regular expressions of mobile / Unicom / telecom mobile phone numbers. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
China Mobile 134.135.136.137.138.139.150.152.157.158.159.187.188,147 (data card)
China Unicom 130.131.132.155.156.185.186
China Telecom 133.153.180.189
CDMA 133153
The rules are as follows:
/ match mobile phone number / public const string PATTERN_CMCMOBILENUM = @ "^ 1 (3 [4-9] | 5 [012789] | 8 [78])\ d {8} $"; / match telecom phone number / public const string PATTERN_CTCMOBILENUM = @ "^ 18 [09]\ d {8} $" / public const string PATTERN_CUTMOBILENUM = @ "^ 1 (3 [0-2] | 5 [56] | 8 [56])\ d {8} $"; / match CDMA mobile number / public const string PATTERN_CDMAMOBILENUM = @ "^ 1 [35] 3\ d {8} $"; Thank you for reading! This is the end of the article on "how to match Mobile / Unicom / Telecom Mobile number regular expression". I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, you can share it for more people to see!