Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert super- or subscript to normal text in C#

I'm writing a slug generator for making nice urls. I'd like to convert m² to m2, but in a generic way that does this for all superscript (or subscript), not just a simple replace statement.

Any ideas?

like image 857
Jorrit Salverda Avatar asked Apr 20 '10 08:04

Jorrit Salverda


2 Answers

Thanks Johannes, you set me on the right track. The code with which I got it to work looks as follows:

public string ConvertSuperscript(string value)
{
    string stringFormKd = value.Normalize(NormalizationForm.FormKD);
    StringBuilder stringBuilder = new StringBuilder();

    foreach (char character in stringFormKd)
    {
        UnicodeCategory unicodeCategory = CharUnicodeInfo.GetUnicodeCategory(character);
        if (unicodeCategory != UnicodeCategory.NonSpacingMark)
        {
            stringBuilder.Append(character);
        }
    }

    return stringBuilder.ToString().Normalize(NormalizationForm.FormKC);
}

I tried the canonical decomposition before, but it needed the compatibility decomposition to work properly.

like image 73
Jorrit Salverda Avatar answered Nov 09 '22 19:11

Jorrit Salverda


If your string is going in the URL, then I assume it is some kind of regular non-formatted text in the form of unicode characters (as opposed to an MS Word doc for example). In unicode, you can only have certain characters as superscript or subscript. They are not that many and a simple switch statement would do the job.

If you are trying to convert formatted text that could contain all kinds of characters as superscript or subscript, that means they are not directly represented as unicode, and it would depend a lot on the format of the text. If so, please give more information in the question.

like image 23
Slavo Avatar answered Nov 09 '22 17:11

Slavo