ctpyy 发表于 2014-8-1 15:55:33

如何写这个正则

<a href="http://xxxxxxxx/xxxxxx.rar"
这种链接如何写正则表达式提取http://xxxxxxxx/xxxxxx.rar
以<a href="开始以.rar或.zip结尾

ctpyy 发表于 2014-8-1 17:03:54

^(http:).*((zip)|(rar))
这样写为什么不行呀?

水木子 发表于 2014-8-1 18:32:47

回复 2# ctpyy
(?<=<a href=")[^"]+

lpxx 发表于 2014-8-1 21:40:01

本帖最后由 lpxx 于 2014-8-1 21:44 编辑

http[^"]+http[^"]+(?:zip|rar)

austere 发表于 2014-8-1 22:10:20

回复 3# 水木子


在这里问下版主大大,我怎么不能使用发帖中的隐藏功能呢?
如果要使用的话,该怎么弄呢? 不好意思~~ 我是小白~

user3000 发表于 2014-8-1 22:31:24

回复 5# austere


    欲隐藏帖子中某一内容,其操作类似发代码一样,只是把 code 换成 hide 就可以了!

haijie1223 发表于 2014-8-1 22:40:40

<a href="(.*?)"

DenQ 发表于 2014-8-2 00:01:41

帮顶下。。。。

ctpyy 发表于 2014-8-2 23:48:42

多谢各位的热心帮助
页: [1]
查看完整版本: 如何写这个正则