Different language character problem after making uppercase

Hi,

Any ideas for converting character “ı” to uppercase ?

When I make it uppercase with toUpper, it stays as “ı” instead of “I”.

Output: image

Similar problem with the character “i”, it becomes “I” instead of “İ”.

Is there any way to mention the language when changing to uppercase/lowercase like in CSS tags:

<html lang=”en”>

Thanks in advance.

Test this:

s = s.ToUpper(New Globalization.CultureInfo("tr-TR", False))

More country codes: List of .Net Culture and Country Codes | Lonewolf Online

4 Likes

Thanks! CultureInfo solved the issue. :partying_face: :100:

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.