2

这是我的代码:

name = namestr.decode("utf-8")

name.replace(u"\u2018", "").replace(u"\u2019", "").replace(u"\u201c","").replace(u"\u201d", "")

这似乎不起作用。我仍然在我的文本中找到&ldquo,&rdquo等。此外,此文本已使用 Beautiful Soup 进行解析。

4

1 回答 1

5

将代码的最后一行替换为以下代码:

name = name.replace(u"\u2018", "").replace(u"\u2019", "").replace(u"\u201c","").replace(u"\u201d", "")

replace方法返回一个修改后的字符串,但它不会影响您调用它的字符串,因此您必须将返回值分配给上述变量。

于 2013-04-01T21:07:45.360 回答