Skip to content

Instantly share code, notes, and snippets.

@dcloud
Last active September 4, 2020 17:55
Show Gist options
  • Save dcloud/867e2e8b107a4201a05a to your computer and use it in GitHub Desktop.
Save dcloud/867e2e8b107a4201a05a to your computer and use it in GitHub Desktop.
That is so cool
# Curly/Educated marks are \u2018-\u201F in Unicode
# python
re.findall(u'[\u2018-\u201F]', apage)
# bash
for i in $(seq 0x2018 0x201F); do
echo "char: \u$(( [##16]i ))"
done
@dcloud
Copy link
Author

dcloud commented Sep 4, 2020

:.s/\(\%u201C\\|\%u201D\)/"/g

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment