I'm looking for an alternative for the oracle convert() function in Snowflake. More specifically speaking I want to replace special characters in a string value (e.g. é, ä, ö) with the best matching letters.
In Oracle I can do something like this:
convert('émíliõ', 'us7ascii')
which would return 'emilio'.
I know I can write loads of replace() statements to do this but I was wondering if there is a better way to do this?