在VB中,Len函数用于获取一个字符串或数组的长度。对于字符串来说,Len函数返回字符串中的字符数;对于数组来说,Len函数返回数组元素的数量。例如:
Len
Dim str As String str = "Hello" MsgBox Len(str) ' 输出 5 Dim arr(3) As Integer MsgBox Len(arr) ' 输出 4