项目的一个例子是:
Title1=Hello!
我需要删除前7个字符才能成功:
Hello!
我已尝试过此代码,但无效:
ListBox.Items.Item(1).Remove(0, 7)
答案 0 :(得分:0)
For Each i In ListBox1.Items
i = (StrReverse(StrReverse(i).Remove(7)))
Next
答案 1 :(得分:0)
Dim x as Integer
对于x = 0到Listbox1.Items.Count - 1
Listbox1.Items(x) = Listbox1.Items(x).substring(7)
下一个x