Regex.Match整个单词
在C#,我想使用正则表达式来匹配任何这些单词:
string keywords = "(shoes|shirt|pants)";
我想在内容字符串中找到整个单词。我以为这样regex做会:
if (Regex.Match(content, keywords + "\\s+",
RegexOptions.Singleline | RegexOptions.IgnoreCase).Success)
{
//matched
}
但是对于像这样的单词participants,它会返回true ,即使我只想要整个单词pants。
我如何仅匹配那些文字?
明月笑刀无情
慕标5832272