Javascript regex to allow specific characters in arabic

前端 未结 1 1448
無奈伤痛
無奈伤痛 2021-01-21 08:24

How to write regex to allow specific characters or digits in Arabic language

i have this regex but it does match all arabic and english

   /^[-\\sa-zA-Z         


        
1条回答
  •  孤城傲影
    2021-01-21 09:16

    Use

    /^[-\s\u0621-\u064A\u0660-\u0669\u066E-\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF\u0‌6F0-\u06F9]+$/
    

    Here, \u06F0-\u06F9 range stands for extended digits and \u0621-\u064A\u0660-\u0669\u066E-\u06D5\u06EE\u06EF\u06FA-\u06FC\u06FF stand for all letters.

    See legend (taken from Wikipedia) (adjust as you see fit using the table below):

    0 讨论(0)
提交回复
热议问题