Visual Basic 6.0
Visual Basic 6.0
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 Visual Basic 6.0 Downloads
Dim success As Long
success = 0
Dim s As String
s = "Números para Mí (Student Edition, Spanish)"
Dim sb As New ChilkatStringBuilder
success = sb.Append(s)
success = sb.RemoveAccents()
Debug.Print sb.GetAsString()
' Output:
' Numeros para Mi (Student Edition, Spanish)