我现在正在尝试这样的事情
Dim myAddress() As String
myAddress= Split("4th Street NW Washington, DC")
For intI = 1 To UBound(myAddress)
`how can i access myAddress[intI+1] from here?
Next intI
Run Code Online (Sandbox Code Playgroud)
尝试这个:
Dim myAddress() As String
myAddress= Split("4th Street NW Washington, DC")
For intI = 1 To UBound(myAddress)
Console.WriteLine(myAddress(intI))
Next intI
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
18267 次 |
| 最近记录: |