本文介绍了需要搜索类似匹配的特定文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有以下文字,我只想找到两个文字
二:2
二十二:22
五十二:52
如果我在正常表达式下面开火,我得到3场比赛,因为我只想找到两个
---------- -------------
二:(?'两个')
------------- ----------
请更新。
Rishi
Hi,
I have below text from which I want to find only "Two" text
Two: 2
Twenty Two: 22
Fifty Two: 52
If I fire below regular-expression, I getting 3 matches as I want to find only "Two"
-----------------------
Two: (?'two')
-----------------------
Kindly update.
Rishi
推荐答案
^Two: (?'two'\d+)
命名组(?'two'\ d +)将捕获所有数字到结尾o在该行中将它们放入一个名为two的组中。
The named group "(?'two'\d+)" will capture all digits to the end of the line and put them in a group called "two".
这篇关于需要搜索类似匹配的特定文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!