Insert
在指定位置插入一个子字符串。
语法:
Insert(StartIndex, Value)
参数:
StartIndex:
插入子字符串的位置。
Value:
要插入的子字符串
例如:
Dim
s
As
String
=
"abcefg"
s = s.Insert(
3
,
"123"
)
Output.Show(s)
代码的输出结果是:
abc123efg
本页地址:
http://www.foxtable.com/webhelp/topics/0246.htm