VB.NET - Remove a characters from a String

前端 未结 4 1772
小蘑菇
小蘑菇 2021-02-18 15:34

I have this string:

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

I want a function who removes the \';\

4条回答
  •  忘掉有多难
    2021-02-18 16:09

    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

提交回复
热议问题