Python的正则表达式替换字符串与模式

正则表达式是r'[A-z\d,\-.\ \/\n]{1,}',这个正则表达式将允许字母数字+一些特殊的字符。Python的正则表达式替换字符串与模式

我想替换不允许的字符。

我都试过了,

re.sub(r'[A-z\d,\-.\ \/\n]{1,}', ' ', 'ASGHB 3 JHDSD eyg && ^&*hdbcd v%^&*B#$%^') 

给出作为输出,

' && &* % &* #$% ' 

我想原始字符串作为替换为特殊字符(这是不允许的)用空格输出。

预期产出:ASGHB 3 JHDSD eyg ^hdbcd v^B ^ 如何实现这一目标?

回答:

你可以找到所有关于应用re.sub here

所以你的问题。你应该用你的^集之前:

If the first character of the set is '^', all the characters that are not in the set will be matched. 

For example, [^5] will match any character except '5', and [^^] will match any character except '^'.

^ has no special meaning if it’s not the first character in the set.

以上是 Python的正则表达式替换字符串与模式 的全部内容, 来源链接: utcz.com/qa/261503.html

回到顶部