GREP tips
How to ignore diacritics in scripted GREP search
Assuming you want Hebrew diacritics, it would be something like this:
[\\x{0591}-\\x{05C4}\\x{05A2}-\\x{05C7}]{0,4}
Find e-mail addresses
\S+@\S+
Assuming you want Hebrew diacritics, it would be something like this:
[\\x{0591}-\\x{05C4}\\x{05A2}-\\x{05C7}]{0,4}
\S+@\S+