I have this string:
Dim stringToCleanUp As String = \"bon;jour\" Dim characterToRemove As String = \";\"
I want a function who removes the \';\
The String class has a Replace method that will do that.
String
Dim clean as String clean = myString.Replace(",", "")