static bool ExactMatch(string input, string match) { return Regex.IsMatch(input, string.Format(@"{0}",match)); }
stick of Word skip 返回false stick of Word skip CK 返回true stick of Word skip ck返回false,区分大小写,如果要不区分大小写,可以全部转换为小写或者大写然后再判断
:匹配一个单词边界,也就是指单词和空格间的位置。例如, 'er' 可以匹配"never" 中的 'er',但不能匹配 "verb" 中的 'er'。
B:匹配非单词边界。'erB' 能匹配 "verb" 中的 'er',但不能匹配 "never" 中的 'er'。
http://bbs.csdn.net/topics/30244335