I'm trying to convert some strings that are in French Canadian and basically, I'd like to be able to take out the French accent marks in the letters while keeping the letter. (E.g. convert é to e.)
What is the best method for achieving this?
|
I'm trying to convert some strings that are in French Canadian and basically, I'd like to be able to take out the French accent marks in the letters while keeping the letter. (E.g. convert What is the best method for achieving this?
| ||||
feedback
|
|
I've not used this method, but Michael Kaplan describes a method for doing so in his blog post (with a confusing title) that talks about stripping diacritics:
Note that this is a followup to his earlier post The approach uses String.Normalize to split the input string into constituent glyphs (basically separating the "base" characters from the diacritics) and then scans the result and retains only the base characters. It's just a little complicated, but really you're looking at a complicated problem. Of course, if you're limiting yourself to French, you could probably get away with the simple table-based approach in How to remove accents and tilde in a C++ std::string, as recommended by @David Dibben. | |||||
feedback
|
|
I don't really know what your situation is, but I would strongly encourage you not to do this. A good reference is Joel's article The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!). | |||||||||||||||
feedback
|
|
In case someone is interested, I was looking for something similar and ended writing the following:
| |||||||
feedback
|
|
In case anyone's interested, here is the java equivalent:
| |||||||
feedback
|
|
A warning: This approach might work in some specific cases, but in general you cannot just remove diacritical marks. In some cases and some languages this might change the meaning of the text. You don't say why you want to do this; if it is for the sake of comparing strings or searching you are most probably better off by using a unicode-aware library for this. | ||||
|
feedback
|
|
this did the trick for me...
quick&short! | |||
|
feedback
|
|
This question seems similar to how-to-remove-accents-and-tilde-in-a-c-stdstring | |||
|
feedback
|
|
This works fine in java. It basically converts all accented characters into their deAccented counterparts followed by their combining diacritics. Now you can use a regex to strip off the diacritics.
| ||||
|
feedback
|
|
THIS IS THE VB VERSION (Works with GREEK) : Imports System.Text Imports System.Globalization
| |||
|
feedback
|