正则表达式从文本中删除URL

时间:2009-12-18 18:02:17

标签: python regex url

我想从Python中的文本中删除所有出现的URL [完整路径,查询字符串]。有关如何做到这一点的任何建议?我是regex的新手!

http://example.com/url/?x=data

应删除整个网址! 感谢

3 个答案:

答案 0 :(得分:1)

假设您要删除任何有效的URL,这绝对是一项非常重要的任务。我来看一下Regex Lib page on the topic

答案 1 :(得分:1)

答案 2 :(得分:-1)

URL remove Example

<?php
    preg_match_all('/<a.*?href=".*?">(.*?)<[\/]a>/', $content,$arr);

    $new_content = str_replace($arr[0], $arr[1], $content);
    echo $new_content;
?>