匹配返回捕获但不匹配模式

时间:2019-02-22 12:08:18

标签: c# regex regex-group

这里有一个问题:

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"

1 个答案:

答案 0 :(得分:-1)

您可以使用

(?<=^#WORD ")\w+(?="$)

Regexr