Possible Duplicate:
How do I remove diacritics (accents) from a string in .NET?

I have the following string

áéíóú

which I need to convert it to

aeiou

How can I achieve it? (I don't need to compare, I need the new string to save)


Not a duplicate of How do I remove diacritics (accents) from a string in .NET?. The accepted answer there doesn't explain anything and that's why I've "reopened" it.

link|improve this question

feedback

closed as exact duplicate by Thomas Levesque, Hans Passant, dmckee, Henk Holterman, Greg Hewgill Sep 23 '10 at 8:27

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 6 down vote accepted

It depends on requirements. For most uses, then normalising to NFD and then filtering out all combining chars will do. For some cases, normalising to NFKD is more appropriate (if you also want to removed some further distinctions between characters).

Some other distinctions will not be caught by this, notably stroked Latin characters. There's also no clear non-locale-specific way for some (should ł be considered equivalent to l or w?) so you may need to customise beyond this.

There are also some cases where NFD and NFKD don't work quite as expected, to allow for consistency between Unicode versions.

Hence:

public static IEnumerable<char> RemoveDiacriticsEnum(string src, bool compatNorm, Func<char, char> customFolding)
{
    foreach(char c in src.Normalize(compatNorm ? NormalizationForm.FormKD : NormalizationForm.FormD))
    switch(CharUnicodeInfo.GetUnicodeCategory(c))
    {
      case UnicodeCategory.NonSpacingMark:
      case UnicodeCategory.SpacingCombiningMark:
      case UnicodeCategory.EnclosingMark:
        //do nothing
        break;
      default:
        yield return customFolding(c);
        break;
    }
}
public static IEnumerable<char> RemoveDiacriticsEnum(string src, bool compatNorm)
{
  return RemoveDiacritics(src, compatNorm, c => c);
}
public static string RemoveDiacritics(string src, bool compatNorm, Func<char, char> customFolding)
{
  StringBuilder sb = new StringBuilder();
  foreach(char c in RemoveDiacriticsEnum(src, compatNorm, customFolding))
    sb.Append(c);
  return sb.ToString();
}
public static string RemoveDiacritics(string src, bool compatNorm)
{
  return RemoveDiacritics(src, compatNorm, c => c);
}

Here we've a default for the problem cases mentioned above, which just ignores them. We've also split building a string from generating the enumeration of characters so we need not be wasteful in cases where there's no need for string manipulation on the result (say we were going to write the chars to output next, or do some further char-by-char manipulation).

An example case for something where we wanted to also convert ł and Ł to l and L, but had no other specialised concerns could use:

private static char NormaliseLWithStroke(char c)
{
  switch(c)
  {
     case 'ł':
       return 'l';
     case 'Ł':
       return 'L';
     default:
       return c;
  }
}

Using this with the above methods will combine to remove the stroke in this case, along with the decomposable diacritics.

link|improve this answer
There are some syntax problems, could you fix them? Your answer works and is very enlightening. Thank you. – BrunoLM Sep 22 '10 at 15:24
Right you are Bruno, a few bits wrong due to writing straight as a reply rather than copying from a code editor. Should be correct now. – Jon Hanna Sep 22 '10 at 15:35
feedback

have you tried this:

http://csharpfeeds.com/post/2369/Removing_diacritics_accents_from_strings.aspx

link|improve this answer
Nice link. /stupidpadding – annakata Sep 22 '10 at 13:04
1  
Why allow SpacingCombiningMark and EnclosingMark? – Jon Hanna Sep 22 '10 at 14:01
@Jon: it's an example if he doesn't like it he can modify it – KARASZI István Sep 22 '10 at 15:10
I can see why one might want to modify, which is why my own answer has explicit scope for that, but leaving in SpacingCombiningMark and EnclosingMark seems simply wrong. Why would one want it that way? – Jon Hanna Sep 22 '10 at 15:23
feedback
public string RemoveDiacritics(string input)
{
    string stFormD = input.Normalize(NormalizationForm.FormD);
    int len = stFormD.Length;
    StringBuilder sb = new StringBuilder();
    for (int i = 0; i < len; i++)
    {
        System.Globalization.UnicodeCategory uc = System.Globalization.CharUnicodeInfo.GetUnicodeCategory(stFormD[i]);
        if (uc != System.Globalization.UnicodeCategory.NonSpacingMark)
        {
            sb.Append(stFormD[i]);
        }
    }
    return (sb.ToString().Normalize(NormalizationForm.FormC));
}
link|improve this answer
1  
Why allow SpacingCombiningMark and EnclosingMark? – Jon Hanna Sep 22 '10 at 14:01
As anwered above by Karaszi, its only example of how it can be done. Bruno didnt specified exact requirements. – cichy Sep 22 '10 at 15:25
feedback

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