I would like to use a function convert none Latin characters to Latin characters when producing a report from the data in the DB, which is Azure SQL Server. i.e. input the original name and output the name with the latin characters
For example if a name is written with one of the following:
Ä ä À à Á á Â â Ã ã Å å Ǎ ǎ Ą ą Ă ă Æ æ
I would like to replace the non-latin characters with A
or a
.
If a name is written with one of the following:
Ç ç Ć ć Ĉ ĉ Č č
I would like to replace the non-latin characters with C
or c
.
This is the list of non-latin characters to replace. It is quite long so I am asking if anyone knows a smart way to do this rather than brute force using so many replace operations:
Thank you for your help.