I have this string:
Dim stringToCleanUp As String = \"bon;jour\" Dim characterToRemove As String = \";\"
I want a function who removes the \';\
You can use the string.replace method
string.replace("character to be removed", "character to be replaced with")
Dim strName As String strName.Replace("[", "")