基本上我有一个看起来像的数组
array = ("Hello_123","Hello_234","Hello_345")
我想删除";Hello_;从阵列中提取,从而使结果变为
array = ("123","234","345")
你知道我该怎么做吗?
如@user692942所述,循环遍历数组并使用Replace()
更新值,如下所示:
MyArray = Array("Hello_123","Hello_234","Hello_345")
For i = 0 to UBound(MyArray)
MyArray(i) = Replace(MyArray(i),"Hello_","")
Next