1
tomriddle 2014-12-11 12:59:14 +08:00 1
import re
re.escape('\\r\\n') |
2
iptux 2014-12-11 13:01:53 +08:00 2
```
$ python Python 2.7.3 (default, Feb 27 2014, 19:58:35) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> '\r\n'.encode('string_escape') '\\r\\n' >>> ``` hex 的 encoding 也很好用 |
4
banbanchs 2014-12-11 13:05:43 +08:00
s.encode("unicode_escape") ?
|
5
staticor 2014-12-11 13:05:52 +08:00
repr(s).replace('\\', '\\\\')
|
6
jiankangxin 2014-12-11 13:10:15 +08:00
@iptux 之前一直在用 replace 原来。。。
|
7
kungfuchicken 2014-12-11 13:12:20 +08:00
"\\".join(r'\r\n'.split("\\"))
|
8
lygmqkl 2014-12-11 15:18:24 +08:00
我都是在 js层做这个 转换得,感觉存入数据库得时候改变并不是很好。
|