我试图从字符串中取出字母和空格,但它保留\r\n
了我不想要的结果。还有一个函数可以返回不包括我给它的正则表达式的结果?
我需要排除的代码\r\n
region = ",,,Central California\r\n"
#\w Matches word characters.
#\s Matches whitespace
print re.findall(r"[\w\s]+", region)
异常输出['Central California']
输出得到['Central California\r\n']
返回与正则表达式不匹配的所有内容
region = ",,,Central California\r\n"
#\W Matches nonword characters.
print re.exclude_function(r"[\W]+", region)
异常输出['Central California']