gpt4 book ai didi

python - 特定 URL 的正则表达式

转载 作者:行者123 更新时间:2023-12-01 03:58:43 25 4
gpt4 key购买 nike

我有一个像这样的 URL 列表:

http://www.toto.com/bags/handbags/test1/
http://www.toto.com/bags/handbags/smt1/
http://www.toto.com/bags/handbags/test1/test2/
http://www.toto.com/bags/handbags/blabla1/blabla2/
http://www.toto.com/bags/handbags/smt1/smt2/
http://www.toto.com/bags/handbags/smt1/smt2/testing/
http://www.toto.com/bags/handbags/smt1/smt2/testing.html

我在这里想要的是只采用像

这样的 URL
http://www.toto.com/something/else/again/more

仅限于此,多了就不采纳了。

你能帮我一下吗? :)

最佳答案

适当的正则表达式是:

^http://www.toto.com/(\w+/){4}$

过滤示例:

>>> for line in lines:
... if re.match(r'^http://www.toto.com/(\w+/){4}$', line):
... print line
...
http://www.toto.com/bags/handbags/test1/test2/
http://www.toto.com/bags/handbags/blabla1/blabla2/
http://www.toto.com/bags/handbags/smt1/smt2/

关于python - 特定 URL 的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36973729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com