Hi,
i use the following regex to replace some hyphenation of words.
Find: (\p{Greek})-(\p{Greek})
Replace: \1\2
There is an way to ignore some of the regex results?
for example to ignore: πλάι-πλάι, ίσα-ίσα, μισό-μισό and all the - with the same word as \1 and \2
Thanks
|