Hi,
i user the following regex to check for hypen errors
Code:
FIND:(?<![\x{0370}-\x{03FF}\x{1F00}-\x{1FFF}])([\x{0370}-\x{03FF}\x{1F00}-\x{1FFF}]+)-(?!\ |\,|\1)
REPLACE:\1
In greek language we have sometimes a - before a capital letter, where i can find the unicode rage to exclude them from the finding? I don't want to use something like this
Code:
(?<![\x{0370}-\x{03FF}\x{1F00}-\x{1FFF}])([\x{0370}-\x{03FF}\x{1F00}-\x{1FFF}]+)-(?!\ |\,|\1|\Δ|\Π|\Α|\Ρ|\Χ|\Ν|\Ζ|\Φ)
Thanks