VB.Net等效代码对于Mid $(字符串,起始位置,结束位置)=新字符串

时间:2014-09-21 05:49:10

标签: vb.net string vb6

在VB6中,我可以使用以下代码用另一个字符串来改变字符串的一部分..

例如:

Dim strTest As String
strTest = "abc"
Mid$(strTest, 2, 1) = "x"
' now strTest Value will be "axc"

上面有VB.Net等价吗? String.Replace将替换所有实例,但我不希望这样。

1 个答案:

答案 0 :(得分:5)

使用VB.NET Mid statement。下面的代码将产生与VB6代码相同的结果。

Dim strTest As String
strTest = "abc"
Mid(strTest, 2, 1) = "x"