鉴于声明
猫与狗一起玩耍
我可以用这个正则表达式捕获猫和狗
(cat).*(dog)
句子中不会总是有猫,所以我将第一个捕获组作为可选项
(cat)?.*(dog)
使用可选捕获组时,.*总是抓取整个第一部分,忽略可选捕获,即使它在那里.如果猫在那里怎么可能被抓住,但如果它不存在,正则表达式仍将匹配狗?
我试过让明星不贪婪
(cat)?.*?(dog)
并尝试使用|而不是可选的捕获组,但第一个捕获组总是被忽略.
解决方法
(?:(cat).*)?(dog)
匹配’cat’和后续角色直到下一个’dog’作为单个非捕获组,但捕获’cat’.
演示于http://regex101.com/r/cE9yC8
样品:
the cat and the dog played together - match 'cat' and 'dog the mouse didn't play with the dog - match 'dog'