正则表达式记事本++

时间:2012-11-26 19:56:41

标签: java regex string notepad++

我有一个包含链接的大文件:

http://livetv.ru/en/livescore/
http://www.premiocentre.ru/
http://cs.rin.ru/forum/
http://www.girlsgames123.ru/zomer.html
http://wikitourist.ru/Prescott,_ARIZONA_Virginia_homes_tutorial_Made_for_All_Purchaser9851840
http://spanishrestaurant.ru/tags/%F0%FB%E1%E0/

如何编写记事本++的正则表达式以删除所有在第三个/?

之后的所有内容

2 个答案:

答案 0 :(得分:3)

搜索

^((?:[^\/]*\/){3}).*$

并将其替换为

$1

答案 1 :(得分:0)

我可能误会了,因为你的例子都没有超过三个斜线。但是这里有:

搜索:

(http://[^/]+/[^/]+/[^/]+/).*

替换为:

\1

如果您将http://计为前两个斜杠,那么您想要使用此正则表达式:

(http://[^/]+/).*