在C#
,我想用正則表達式匹配任何的這些話:Regex.Match整個單詞
string keywords = "(shoes|shirt|pants)";
我想找到的內容串整個單詞。我認爲這regex
會這麼做:
if (Regex.Match(content, keywords + "\\s+",
RegexOptions.Singleline | RegexOptions.IgnoreCase).Success)
{
//matched
}
但它返回像participants
的話屬實,即使我只是想整個單詞pants
。
如何只匹配那些文字的話呢?
這並不提供答案,儘管不是正則表達式表達。 – escist 2013-03-21 05:25:35