我正在尝试匹配以下字符串并提取数字:
"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+)$"
这解决了问题,但我不知道为什么。