删除 URL 之前和之后的所有内容 - 正则表达式查找并替换记事本++
我有一个要保存的网址列表,但它们被垃圾包围
示例:
代理 - bla bla bla http:// /demo.elefanteinstaller.com/smf/index.php?topic=39.new#new 结果:使用代理213.77.18.201:80;选择昵称“#ZKGSLAW[XXXIFXXXQXXX]”;验证码已识别;已注册(100%);个人资料已编辑;已登录;发现 nofollow;成功; >BB 代码不起作用;
我怎样才能在记事本++中使用查找和替换,我将只保存以http://开头并以空格结尾的内容
i have a list of url's that i want to save but they are surrounded by junk
Example:
proxy - bla bla bla http://demo.elefanteinstaller.com/smf/index.php?topic=39.new#new Result: using proxy 213.77.18.201:80; chosen nickname "#ZKGSLAW[XXXIFXXXQXXX]"; captcha recognized; registered (100%); profile edited; logged in; nofollow is found; success; >BB-code not working;
How can i make in notepad++ using the find and replace that i will save only what is starting with http:// and ends with space
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了简单起见:
查找内容:
.* (http://.*?) .*
替换为:
\1
To keep it simple:
Find what:
.* (http://.*?) .*
Replace with:
\1
另外,如果您可以访问 MS Word,请切换到固定字体,如 courier new 或 console(排列效果更好),然后按住 Alt+Shift 并像您一样单击并拖动突出显示桌面上的某些内容。对于较小的列表效果很好。
Also if you have access to MS Word switch to a fixed font like courier new or console (lines things up better) Then hold Alt+Shift and click and drag like you would to highlight something on the desktop. Works nicely for smaller lists.