2024-10-31 14:50:43
2024-10-31 17:44:47
如果我想录入以下字符,全部匹配,应该怎么做?
abc ABC /.ST'
你是用什么语言开发?
.net 匹配的是单词、空格,中间有时候会出现 斜线 / ,英文点 . 或英文 '
string pattern = "^[A-Za-z]|[\s]|[/]|[\']|[\.]+$"; //正则表达式字符串
Regex regex = new Regex(pattern);
string input = "abc ABC /.ST'";
bool isMatch = regex.IsMatch(input);