python正则在linux和windows的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python正则在linux和windows的区别相关的知识,希望对你有一定的参考价值。
windows:
text = re.sub(‘本题[&\^]{0,4}分数[*\^&]{0,4}\d+?[*\^&]{0,4}分|【\^?独家提供\^?QQ905363546】\^?!‘, ‘‘, text)
Linux:
text = re.sub(‘本题[&\^]{0,4}分数[\^&]{0,4}\d+?[\^&]{0,4}分|【\^?独家提供\^?QQ905363546】\^?!‘, ‘‘, text)
\^不能单独放在 [ ]前面
以上是关于python正则在linux和windows的区别的主要内容,如果未能解决你的问题,请参考以下文章
python正则表达式函数match()和search()的区别详解