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("[", "")
Function RemoveCharacter(ByVal stringToCleanUp, ByVal characterToRemove)
' replace the target with nothing
' Replace() returns a new String and does not modify the current one
Return stringToCleanUp.Replace(characterToRemove, "")
End Function
Here's more information about VB's Replace function
The string
class's Replace
method can also be used to remove multiple characters from a string:
Dim newstring As String
newstring = oldstring.Replace(",", "").Replace(";", "")
The String
class has a Replace method that will do that.
Dim clean as String
clean = myString.Replace(",", "")