How can to use regex for all utf8 character? for example I want to check this format by regex:
[1][الهه اردونی]
I used \w for checking persian character but it dosent worked:
^(\[1\])(\[\w+\])$
I also used this:
^(\[1\])(\[\u0600-\u06FF\])$
so how can I do that? Thanks for any helping
How about the regex
example : http://regex101.com/r/cU1nQ8/1
\p{L}
matches any kind of letter from any language