如果您的文件包含
apples are good apple cider is also good
为什么egrep '(?=apples)app' file不能识别任何行?
egrep '(?=apples)app' file
在MAC上使用egrep 2.5.1
发布于 2012-05-18 09:38:58
扩展正则表达式没有积极的前瞻功能。请参阅the regex flavor comparison
https://stackoverflow.com/questions/10645542
相似问题