手机号正则表达式

^[1][3-8]+\\d{9}

^首字母
[1]必须是1,方格可以去掉吧。。
[3-8]第二个数字为3-8之间
+加表示至少一个[3-8]
\\d表示数字
{9}表示9个,就是9个数字。

手机号正则表达式
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text.RegularExpressions;
using System.Threading;
 
namespace ConsoleApplication1 {
    class Program {
        public static object _obj = new object();
 
        public static void Main() {
            Regex Regex = new Regex(@"^(86)*0*13\d{9}$");
            Console.WriteLine(Regex.IsMatch("13565264258"));
            Console.WriteLine(Regex.IsMatch("13565264258...."));
            Console.ReadLine();
        }
    }
}
手机号正则表达式

 

 

手机号正则表达式,布布扣,bubuko.com

手机号正则表达式

上一篇:linux云服务器mysql ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’


下一篇:Ubuntu tty1到tty6 登录不断刷新,tty损坏