2

我有一个带有链接的大文件:

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/

如何为记事本++编写一个正则表达式以删除第三个 / 之后的所有内容?

4

2 回答 2

3

搜索

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

并将其替换为

$1
于 2012-11-26T20:04:25.880 回答
0

我可能误解了,因为您的示例都没有超过三个斜线。但这里有:

搜索:

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

用。。。来代替:

\1

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

(http://[^/]+/).*
于 2012-11-26T20:05:06.553 回答