Skip to content

Instantly share code, notes, and snippets.

@acro5piano
Last active December 4, 2017 09:22
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 acro5piano/e43abb41bf5566280532677ee79ebeaf to your computer and use it in GitHub Desktop.
Save acro5piano/e43abb41bf5566280532677ee79ebeaf to your computer and use it in GitHub Desktop.
# Python2
import re
str = 'これは漢字を含みます'
re.search('[\xE4B880-\xE98CAC]', str)
# Python3
import re
str = 'これは漢字を含みます'
re.search('[\u4E00-\u9FD0]', str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment