我正在寻找一个正则表达式来从字符串中删除每个URL或域名,以便:
string='this is my content domain.com more content http://domain2.org/content and more content domain.net/page'
变成
'this is my content more content and more content'
对于我来说,删除最常见的顶级域名就足够了,因此我尝试了
string = re.sub(r'\w+(.net|.com|.org|.info|.edu|.gov|.uk|.de|.ca|.jp|.fr|.au|.us|.ru|.ch|.it|.nel|.se|.no|.es|.mil)\s?','',string)
但这会删除过多的内容,而不仅仅是网址。正确的语法是什么?
最佳答案
您应该转义所有这些点,或者更好的是,将点移到组外并转义一次,也可以从非空间捕获直到没有空间,如下所示:
re.sub(r'[\S]+\.(net|com|org|info|edu|gov|uk|de|ca|jp|fr|au|us|ru|ch|it|nel|se|no|es|mil)[\S]*\s?','',string)
下列:
'this is my content domain.com more content http://domain2.org/content and more content domain.net/page thingynet stuffocom'
变成:
'this is my content more content and more content thingynet stuffocom'
关于python - Python正则表达式删除字符串中的URL和域名,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54887282/