The character ̈ (unicode 0x308) cannot be represented in the “Western (ISO Latin 9)” encoding.
I need to replace several (3) of this special characters in many txt-files. Ideal would be one single regex command for the TEXTWRANGLER editor application I run on my Mac so I can use in the find&replace function of Textwrangler (similar to BBedit).
Here are the 3 special chars:
- ä into ä
- ö into ö
- ü into ü
(please note the first letter persists of two chars (e.g. the a and the ̈ unicode 0x308) and therefore it is not WESTERN ISO LATIN compatibel.
I tried regex (groups) but I was not successfull: In TEXTWRANGLER I use the find&replace function (incl. grep=regex option)
FIND: (ä|ö|ü)+
REPLACE: \1ä , \2ö , \3ü
any idea?