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...

link|improve this question

48% accept rate
Not all "foreign" characters have direct 1-to-1 mappings to "normal" characters (the concept of "normal" being somewhat dubious). If you do this you're discarding information. Why do you want to do this? – Jim Garrison Aug 4 '11 at 14:26
Because some of the people use the foreign characters and some do not. In Dutch we have certain words that have an ë but some people are too lazy to write it... (or don't know how to, because it's not on a dutch keyboard) – Dylan Aug 4 '11 at 14:47
feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
You're right. The collation I use now (utf8_general_ci) even does that already! I thought it didn't... – Dylan Aug 4 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.