当前位置:  开发笔记 > 编程语言 > 正文

PHP的striplashes的Python版本

如何解决《PHP的striplashes的Python版本》经验,为你挑选了1个好方法。

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

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

我怎么能压缩它?



1> dbr..:

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

cleaned = stringwithslashes.decode('string_escape')

推荐阅读
大大炮
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有