I am new to regular expressions and I need a regular expression to match exact Arabic
word using regular expression in a string. I have created this regexr, but it returning 423 matches when there are less than 10 actual word matches in the given string. What should I modify in the regular expression to match the exact arabic word?
EDIT:
I am trying with the following regular expression:
[الإمارات]+
I have tried with word boundary(\b)
which is working for English words but it is not working for Arabic words.