1

我正在尝试匹配以下字符串并提取数字:

"Control 1"
"Control 2"

我想确保避免使用类似的字符串,例如:

"Indication 1"
"Local Control Input 2"

这是我正在使用的模式:

@"^Control (?<slot>\d+)$"

它完美地工作,并match.Groups["slot"].Value返回数字。但是,我发现我还需要能够匹配以下内容:

"Office In 1"
"Office In 2"

我将我的正则表达式修改为:

@"^(?:Control)|(?:Office In) (?<slot>\d+)$"

问题是现在,match.Groups["slot"].Value返回一个空字符串!+要求至少有一位数字吗?我随机尝试在两个现有组周围添加一个额外的非捕获组:

@"^(?:(?:Control)|(?:Office In)) (?<slot>\d+)$"

这解决了问题,但我不知道为什么。

4

1 回答 1

4

交替在正则表达式中具有最高优先级。您的原始正则表达式是"^(?:Control)"(字符串开头的控件)或"(?:Office In) (?<slot>\d+)$"(字符串末尾的 #### 中的 Office)。

试试这个正则表达式:

@"^(?:Control|Office In) (?<slot>\d+)$"
于 2013-11-12T16:32:21.393 回答