Skip to content

Instantly share code, notes, and snippets.

@cgwxyz
Created June 11, 2014 02:43
Show Gist options
  • Save cgwxyz/45fc865634473f886e2a to your computer and use it in GitHub Desktop.
Save cgwxyz/45fc865634473f886e2a to your computer and use it in GitHub Desktop.
python删除字符串slash
def stripslashes(s):
import re
r = re.sub(r"\\(n|r)", "\n", s)
r = re.sub(r"\\", "", r)
return r
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment