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