Skip to content

Instantly share code, notes, and snippets.

@sfantree
Created January 7, 2017 03:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sfantree/366d27447d4c21a4182563cbcae4dee3 to your computer and use it in GitHub Desktop.
Save sfantree/366d27447d4c21a4182563cbcae4dee3 to your computer and use it in GitHub Desktop.
字符串去转义
import re
a='\\xe3\\x82\\xae\\xe3\\x83\\xaa\\xe3\\x82\\xae\\xe3\\x83\\xaaeye'
print repr(a)[1:-1]
b = eval("'%s'" % a)
print b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment