我想从Python中的文本中删除所有出现的URL [完整路径,查询字符串]。有关如何做到这一点的任何建议?我是regex的新手!
http://example.com/url/?x=data
应删除整个网址! 感谢
答案 0 :(得分:1)
假设您要删除任何有效的URL,这绝对是一项非常重要的任务。我来看一下Regex Lib page on the topic。
答案 1 :(得分:1)
答案 2 :(得分:-1)
<?php
preg_match_all('/<a.*?href=".*?">(.*?)<[\/]a>/', $content,$arr);
$new_content = str_replace($arr[0], $arr[1], $content);
echo $new_content;
?>