I am trying to match a range of Unicode characters and I am wondering how to do it. I can match simple ranges like [a-zA-Z] but how do I specify a range of Unicode characters. I've tried
[#xD8-#xF6]
without any luck. Any ideas?
Try:
[\u00D8-\u00F6]
u'[\u00d8-\u00f6]'
'[\u00d8-\u00f6]'
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
2 years ago
viewed
328 times
active
1 year ago