问题:re.error: unbalanced parenthesis at position 88
在使用Python正则表达式的时候,用替换方法出现上述错误,
下面是错误代码:
1 | new_url = "https://jums.club/images/article/20191227161526664.png)" |
错误提示:
错误原因:
我们可以看到,需要替换的两个字符串末尾多出一个)
来,导致匹配出错。我们去掉末尾那个)
就可以了。
更正代码:
1 | line = '![list example](https://img2018.cnblogs.com/blog/1212206/201912/1212206-20191227161526664-2133632479.png)' |
正确运行结果:
写在最后
欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment