标签:c style class blog code java
^首字母
[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(); } } }
标签:c style class blog code java
原文地址:http://www.cnblogs.com/daishuguang/p/3763774.html