使用正则表达式替换字符

时间:2017-09-01 04:40:34

标签: python regex

我想从标题中删除除a-zA-Z和空格以外的所有字符。然后我想将所有字符转换为小写字母。

1 个答案:

答案 0 :(得分:2)

使用内置的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'