本文介绍了正则表达式捕获Pattern后跟'。'在.NET中的charecter的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,



我有一个我需要匹配的模式。

模式需要捕获以下匹配: -



GOBACK。

GOBACK。

GOBACK



但忽略了匹配: -

GOBACK123



我已经在Expresso中将正则表达式写成(\b(GOBACK)\b [.\s]?)\ s + 并且在那里工作正常。

但是当我在.NET中使用它时,它并没有捕获第一个。

请帮忙。

解决方案



Hi All,

I have a pattern that I need to match.
The pattern needs to capture the below matches :-

GOBACK.
GOBACK .
GOBACK

but ignore the match :-
GOBACK123

I have written the regex in Expresso as (\b(GOBACK)\b[.\s]?)\s+ and it works fine there.
But when I use the same in .NET, it is not capturing the first one.
Please help.

解决方案




这篇关于正则表达式捕获Pattern后跟'。'在.NET中的charecter的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-19 07:37