VB.NET – 从字符串中删除一个字符

前端之家收集整理的这篇文章主要介绍了VB.NET – 从字符串中删除一个字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个字符串:
Dim stringToCleanUp As String = "bon;jour"
Dim characterToRemove As String = ";"

我想要一个删除’;’的函数这样的角色:

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

这是什么功能

回答:

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

万分感谢!

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

这里有更多关于VB’s Replace function的信息

原文链接:https://www.f2er.com/vb/255685.html

猜你在找的VB相关文章