CSharp examples for System.Globalization:Chinese
Is Chinese Phone Number
using System.Text.RegularExpressions; using System.Text; using System.Reflection; using System.Linq; using System.Collections.Generic; using System;/*from w w w.ja va 2 s .c om*/ public class Main{ public static bool IsChinesePhoneNumber(string input) { return Regex.IsMatch(input, @"^[0-9\-]{0,20}$"); } }