gpt4 book ai didi

arrays - 如何将一组文本值分配给字符串数组?

转载 作者:行者123 更新时间:2023-12-01 11:06:31 25 4
gpt4 key购买 nike

如何将一组文本值分配给数组?我试过的都没有用!

Months = Array("Jan", "Feb", ..., "Dec")

和我试过的其他人不起作用!

最佳答案

下面是一些关于 VB 的内容:http://www.devx.com/vb2themax/Tip/18322

Visual Basic doesn't provide any way to declare an array and initialize its elements at the same time. In most cases you end up with setting individual elements one by one, as in:


  Dim strArray(0 To 3) As String
strArray(0) = "Spring"
strArray(1) = "Summer"
strArray(2) = "Fall"
strArray(3) = "Winter"

Under VB4, VB5, and VB6 you can create an array of Variants on the fly, using the Array() function:


  Dim varArray() As Variant 
varArray() = Array("Spring", "Summer", "Fall", "Winter")

but there is no similar function to create arrays of data types other than Variant. If you're using VB6, however, you can create String arrays using the Split() function:


  Dim varArray() As String 
' arrays returned by Split are always zero-based
varArray() = Split("Spring;Summer;Fall;Winter", ";")

关于arrays - 如何将一组文本值分配给字符串数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/507653/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com