Python版本的striplashes [英] Python version of PHP's stripslashes

查看:133
本文介绍了Python版本的striplashes的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我写了一段代码将PHP的条纹转换为有效的Python [反斜杠]转义:

I wrote a piece of code to convert PHP's striplashes into valid Python [backslash] escapes:

cleaned = stringwithslashes
cleaned = cleaned.replace('\\n', '\n')
cleaned = cleaned.replace('\\r', '\n')
cleaned = cleaned.replace('\\', '')

我如何凝结?

推荐答案

不完全确定这是你想要的,但是..

Not totally sure this is what you want, but..

cleaned = stringwithslashes.decode('string_escape')

这篇关于Python版本的striplashes的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆