具有先行模式的grep命令不会选择任何内容 [英] grep command with a lookahead pattern does not select anything

查看:67
本文介绍了具有先行模式的grep命令不会选择任何内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图使用以下grep命令:

I was trying to use the following grep command:

grep '(.*)(?=(png|html|jpg|js|css)(?:\s*))(png|html|jpg|js|css.*\s)' file

文件包含以下内容:

 http://manage.bostonglobe.com/GiftTheGlobe/LandingPage.html
 https://manage.bostonglobe.com/cs/mc/login.aspx?p1=BGFooter
 https://www.bostonglobe.com/bgcs
 /newsletters?p1=BGFooter_Newsletters
 https://bostonglobe.custhelp.com/app/home?p1=BGFooter
 https://bostonglobe.custhelp.com/app/answers/list?p1=BGFooter
 /tools/help/stafflist?p1=BGFooter
 https://www.bostonglobemedia.com/
 https://manage.bostonglobe.com/Order/newspaper/Newspaper.aspx
 https://www.facebook.com/globe
 https://twitter.com/#!/BostonGlobe
 https://plus.google.com/108227564341535363126/about
 https://epaper.bostonglobe.com/launch.aspx?pbid=2c60291d-c20c-4780-9829-     b3d9a12687cf
 http://nieonline.com/bostonglobe/
 https://secure.pqarchiver.com/boston-sub/no_default.html?ss=1&url=%2Fboston-sub%2Fadvancedsearch.html
 /tools/help/privacy?p1=BGFooter
 /tools/help/terms-service?p1=BGFooter
 /termsofpurchase?p1=BGFooter
 https://www.bostonglobemedia.com/careers
 /css/globe-print.css?v=19256I1935
 //meter.bostonglobe.com/css/style.css
 /css/globe-print.css?v=19256I1935
 //cdn.blueconic.net/bostonglobemedia.js
 /js/lib/rwd-images.js,lib/respond.min.js,lib/modernizr.custom.min.js,globe-          define.js,globe-controller.js?v=19256I1935
 data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==
 /js/lib/jquery.js,lib/lo-dash-custom-2.4.1.js,lib/a9.js,lib/pb.js,dist/ad-     init.js,globe-newsletter.js,globe-profile-page.js,dist/globe-topic-nav.js,dist/rakuten.js?v=19256I1935
 //dc8xl0ndzn2cb.cloudfront.net/js/bostonglobe/v0/keywee.min.js

由于某种原因,它没有从该文件中选择任何内容,我尝试了不同的标志,但似乎无法找出问题所在

For some reason it doesn't select anything from that file, Ive tried different flags but cant seem to figure out whats wrong

推荐答案

您正在将PCRE正则表达式与POSIX BRE引擎(默认grep引擎)一起使用.

You are using a PCRE regex with the POSIX BRE engine that is default grep engine.

要使这些模式有效,应使用-P选项(在GNU grep中可用):

To make those patterns work, you should use -P option (available in GNU grep):

grep -P 'YOUR_PCRE_PATTERN'
     ^^

为了开发和测试PCRE模式,通常建议使用众所周知的 regex101.com .

To develop and test PCRE patterns, a well-known regex101.com is usually recommended.

请注意,在Mac OS上,您可以安装GNU grep通过brew .

Note that on Mac OS, you may install GNU grep via brew.

这篇关于具有先行模式的grep命令不会选择任何内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆