这里有一个问题:
Regex Match.Value returning entire value, not the matched groups
但是我的问题不一样
我使用
var match = _regex.Match(inputString);
return match.Value;
我想在不按索引引用组的情况下进行应对。有可能吗?
我希望比赛不返回
来自字符串#WORD
的{{1}}
模式:#WORD "SOMEWORD"
输入:^#WORD(.+)$
返回#WORD "SOMEWORD"
我只需要#WORD "SOMEWORD"