When using Regex in Python, it\'s easy to use brackets to represent a range of characters a-z, but this doesn\'t seem to be working for other languages, like Ar
a-z
Use Unicode escapes instead.
>>> re.compile('[\u0627-\u064a]') <_sre.SRE_Pattern object at 0x237f460>