如何获取数组长度??

yrlxm 2004-11-21 10:25:20

FieldMustFill = "a2,a3,a4,a5 "


strSplit = Split(FieldMustFill, ",")

如何取得 strSplit 长度
...全文
112 3 打赏 收藏 转发到动态 举报
写回复
用AI写文章
3 条回复
切换为时间正序
请发表友善的回复…
发表回复
liuyann 2004-11-21
  • 打赏
  • 举报
回复
UBound Function


Returns a Long containing the largest available subscript for the indicated dimension of an array.

Syntax

UBound(arrayname[, dimension])

The UBound function syntax has these parts:

Part Description
arrayname Required. Name of the array variable; follows standard variable naming conventions.
dimension Optional; Variant (Long). Whole number indicating which dimension's upper bound is returned. Use 1 for the first dimension, 2 for the second, and so on. If dimension is omitted, 1 is assumed.


Remarks

The UBound function is used with the LBound function to determine the size of an array. Use the LBound function to find the lower limit of an array dimension.

UBound returns the following values for an array with these dimensions:

Dim A(1 To 100, 0 To 3, -3 To 4)

Statement Return Value
UBound(A, 1) 100
UBound(A, 2) 3
UBound(A, 3) 4
DeltaCat 2004-11-21
  • 打赏
  • 举报
回复
如果数组下标是从 0 开始, 那么 UBound(array) + 1

如果不知道下标从几开始,那么 UBound(array) - LBound(array) + 1
danielrh 2004-11-21
  • 打赏
  • 举报
回复
使用Ubound函数:Ubound(strSplit)

7,713

社区成员

发帖
与我相关
我的任务
社区描述
Microsoft Office Access是由微软发布的关系数据库管理系统。它结合了 MicrosoftJet Database Engine 和 图形用户界面两项特点。
社区管理员
  • Access
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧