标签: python regex
我想从标题中删除除a-z,A-Z和空格以外的所有字符。然后我想将所有字符转换为小写字母。
a-z
A-Z
答案 0 :(得分:2)
使用内置的re模块。
re
re.sub(r'[^a-zA-Z ]', '', my_string).lower()
以下是一个例子:
>>> re.sub(r'[^a-zA-Z ]', '', 'This is 1 test string; I like it.').lower() 'this is test string i like it'