I come from this posts
Regular Expression Arabic characters and numbers only
How to match arabic words with reg exp? (didn't answer my question)
I've tried
^[\p{Arabic} ]+$
and received
'Parse error', reason: 'Invalid escape sequence @ pos 3: ^[\ ▶p{Arabic} ]+$'
I've also tried
^[\u0621-\u064A\s]+$
'Parse error', reason: 'Invalid character range @ pos 7: ^[\u062 ▶1-\u064A\s]+$'
I've also tried
^[\u0621-\u064A]+$
'Parse error', reason: 'Invalid character range @ pos 7: ^[\u062 ▶1-\u064A]+$'
I need ^[A-Za-z ]+$ that accepts arabic characters.
Thanks in advance!