🌈 搜索
📅  最后修改于: 2022-03-11 14:45:40.355000             🧑  作者: Mango
def nospecial(text): import re text = re.sub("[^a-zA-Z0-9]+", "",text) return text