Using range in regex for Arabic letters

后端 未结 2 1862
萌比男神i
萌比男神i 2020-12-11 07:56

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

2条回答
  •  醉梦人生
    2020-12-11 08:36

    Use Unicode escapes instead.

    >>> re.compile('[\u0627-\u064a]')
    <_sre.SRE_Pattern object at 0x237f460>
    

提交回复
热议问题