Hi,
As ConvertAPI webhook have problems with parsing file names with diacritic characters (ó, ą etc.) I want to replace those with their non-diacritic equivalent (o, a etc.).
Regex for finding those characters is apparently simple:
[À-ž]
but I have trouble creating pattern for replacement that works.
Of course, I could create n-times nested replace(replace(replace(replace(mytext,ó;o);ą;a)ń;n);Ś;S) etc. and make this “hardcoded” but I’m looking for more elegant solution.
Many thanks