Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个项目的例子是:
Title1=Hello!
我需要删除前 7 个字符才能完成:
Hello!
我已经尝试过这段代码,但它不起作用:
ListBox.Items.Item(1).Remove(0, 7)
For Each i In ListBox1.Items i = (StrReverse(StrReverse(i).Remove(7))) Next
将 x 调暗为整数
对于 x = 0 到 Listbox1.Items.Count - 1
Listbox1.Items(x) = Listbox1.Items(x).substring(7)
下一个 x