I use this for matching if there its '#' in beginning of word
/(?!\b)(#\S+\b)/
it takes everything after '#'.
But now I need to find all Arabic word who ends with "#" or for start how can I find all word end with "#"?
I try \b[A-Za-z]*#\b
but dont work :(