for MySQL, does someone know of the quickest way to replace all foreign characters in a string with their 'normal' equivalent like ë to e ?
I'm using a multiple REPLACE function now, but I have the feeling it's getting really slow...
|
for MySQL, does someone know of the quickest way to replace all foreign characters in a string with their 'normal' equivalent like I'm using a multiple REPLACE function now, but I have the feeling it's getting really slow...
| |||||
feedback
|
|
I believe that, rather than discard relevant information, you want to use a collation that ignores these differences during comparison. You need an "accent-insensitive" collation, which I believe MySQL provides. | |||
feedback
|