Sample code for 30+ languages & platforms
VB.NET

Remove Accent Marks from Chars in String

Removes the accent marks from Latin and Central European chars in a string.

Note: The RemoveAccents method was added in Chilkat v9.5.0.91. This example requires Chilkat v9.5.0.91 or greater.

Chilkat VB.NET Downloads

VB.NET
Dim success As Boolean = False

Dim s As String = "Números para Mí (Student Edition, Spanish)"

Dim sb As New Chilkat.StringBuilder
success = sb.Append(s)
sb.RemoveAccents()

Debug.WriteLine(sb.GetAsString())

' Output:
' Numeros para Mi (Student Edition, Spanish)