摘要: 测试方法 static string GetTest(string s) { if (Regex.Match(s, "^\\d+$").Success) { return "数字"; } else if (Regex.Match(s, "^[a-zA-Z]+$").Success) { return 阅读全文
posted @ 2019-10-17 15:32 ///K 阅读(2345) 评论(0) 推荐(0)