發(fā)布時間:2020-08-06 09:26 作者:獨孤劍 閱讀:1064
static void Main(string[] args) { // 方式一, 驗證是否為數(shù)字 Console.WriteLine("方式一: {0}", Regex.IsMatch("1", @"^\d*$")); // 方式二, 驗證是否為數(shù)字 Regex regex = new Regex(@"^\d*$", RegexOptions.IgnoreCase); Console.WriteLine("方式二: {0}", regex.IsMatch("1")); Console.ReadKey(); }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞