我有以下代码
// the values for the input and the pattern
// are combinations of R, NR and HR
var input = "NR|HR";
var pattern = "R";
var isMatch = Regex.IsMatch(input, pattern, RegexOptions.IgnoreCase);
这返回true
,因为NR and HR
包含一个R
有什么方法可以R
与正则表达式完全匹配吗?