I have this string:
Dim stringToCleanUp As String = \"bon;jour\" Dim characterToRemove As String = \";\"
I want a function who removes the \';\
The string class's Replace method can also be used to remove multiple characters from a string:
string
Replace
Dim newstring As String newstring = oldstring.Replace(",", "").Replace(";", "")