Regex.Match整个单词在C#,我想使用正则表达式来匹配任何这些单词:string keywords = "(shoes|shirt|pants)";我想在内容字符串中找到整个单词。我以为这样regex做会:if (Regex.Match(content, keywords + "\\s+", RegexOptions.Singleline | RegexOptions.IgnoreCase).Success){ //matched}但是对于像这样的单词participants,它会返回true ,即使我只想要整个单词pants。我如何仅匹配那些文字?
- 3 回答
- 0 关注
- 333 浏览
添加回答
举报
0/150
提交
取消