Python清除常见的网页空格格式

Posted 鸟-叔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python清除常见的网页空格格式相关的知识,希望对你有一定的参考价值。

def clean(string):
pattern = re.compile(r‘<[^>]+>‘, re.S)
string = pattern.sub(‘‘, string)
string = string.replace(‘ ‘, ‘ ‘).replace(‘ ‘, ‘ ‘).replace(‘&nbsp;‘, ‘ ‘).replace(‘ ‘, ‘ ‘).replace(" ",‘‘)
string = string.strip()
return string

以上是关于Python清除常见的网页空格格式的主要内容,如果未能解决你的问题,请参考以下文章

python清除字符串中间空格的方法

Python中的空格和缩进问题总结

4 常见循环if,while,for

json文件中文字改变但是网页却不变

Python中常见字符串去除空格的方法总结

pythoninput()会不会自动去除末尾空格