C# Regex ignoring non-capturing group

Posted ALWAYS CHALLENGE MIRACLES

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Regex ignoring non-capturing group相关的知识,希望对你有一定的参考价值。

E.g I want match the keword "3398" after "red" from the string "This is red with number 3398".

Using non-capturing group regex will help me sovle this problem.

(?<=red.*?)\d+

 

Ref: http://stackoverflow.com/questions/30667041/regex-replace-ignoring-non-capturing-group

以上是关于C# Regex ignoring non-capturing group的主要内容,如果未能解决你的问题,请参考以下文章

C# Regex类用法

当 regex101 匹配时,RegEx C# 不匹配

在 C# 中使用“Regex”检查字符串数组中是不是存在元素

c# regex.ismatch 使用变量

C# RegEx:忽略大小写...在模式中?

设置对象数组中每个项目的属性(C#,Regex.Split())