在 Python3 中,如果要删除字符串中的任何 URL 标识符(例如,\n
, [
, ]
),可以使用 replace()
或 re.sub()
函数来实现
replace()
函数:text = "Some text with\nnew lines 以及 [parentheses] and ] brackets."
text = text.replace("\n", "").replace("[", "").replace("]", "")
print(text)
re.sub()
函数:import re
text = "Some text with\nnew lines 以及 [parentheses] and ] brackets."
text = re.sub(r"
|\[|\]", "", text)
print(text)
在这两个示例中,我们都将删除 \n
, [
和 ]
标识符。replace()
函数通过逐个替换指定字符来工作,而 re.sub()
函数使用正则表达式来进行匹配和替换。
领取专属 10元无门槛券
手把手带您无忧上云