摘要: C# 判断是否为数字 string a = "a123"; if (a != null && Regex.IsMatch(a, @"^\d+$")) { Console.WriteLine("数字"); } else { Console.WriteLine("不是数字"); } Console.Re 阅读全文
posted @ 2021-11-09 10:14 我的未来方程式i 阅读(130) 评论(0) 推荐(0) 编辑