Regex to match Hebrew and English characters except numbers

后端 未结 3 637
庸人自扰
庸人自扰 2020-12-16 21:31

I have a question: I want to do a validation for the first and the last name with RegEx. I want to do it with only Hebrew and English without numbers. Someone can help me to

3条回答
  •  时光说笑
    2020-12-16 22:19

    Try this. Not sure if it will work. If not, these references should help.

    [A-Za-z\u0590-\u05FF]*
    

    Hebrew Unicode

    Unicode in Regular Expressions

提交回复
热议问题