def clean_title_source_date(s): # 使用正则表达式去除回车符、制表符、换行符、全角空格和非断行空白符 cleaned = re.sub(r'[ \r\t\n\u3000\xa0来源:]', '', s) return cleaned