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.
考虑以下 VB 代码:
Dim fooBar As String fooBar = "Foo Bar" Dim q As String q = fooBar(0)
在 VB.Net 中,这会编译并且我的q字符串变量设置为字母“F”,但是在 VB6 中我得到一个编译错误,因为编译器需要一个数组。
我在 VB6 中的一个场景中,能够以这种方式处理字符串非常有用,例如通过索引器或类似的东西访问单个字符。
如何在 VB6 中访问字符串的单个字符?
谢谢
使用Mid:
Mid
q = Mid(fooBar, 1, 1)