[vb.net] VB.NET - Remove a characters from a String

I have this string:

Dim stringToCleanUp As String = "bon;jour"
Dim characterToRemove As String = ";"

I want a function who removes the ';' character like this:

Function RemoveCharacter(ByVal stringToCleanUp, ByVal characterToRemove)
...
End Function

What would be the function ?

ANSWER:

Dim cleanString As String = Replace(stringToCleanUp, characterToRemove, "")

Great, Thanks!

This question is related to vb.net string visual-studio-2010

The answer is


The String class has a Replace method that will do that.

Dim clean as String
clean = myString.Replace(",", "")

Similar questions with vb.net tag:

Similar questions with string tag:

Similar questions with visual-studio-2010 tag: