Navigation bar
  Start Previous page
 137 of 283 
Next page End 132 133 134 135 136 137 138 139 140 141 142  

128
Len
Type
Function returning Integer
Invocation
Len(str) 
Parameter
Method
Type
Description
str
ByVal
String
The string of which the length is to be determined.
Discussion
This function returns the length of the given string, in bytes.  Note that the length may be zero.
Example
Dim s as String
Dim i as Integer
s = "Hello, world!"
i = Len(s)
' the result will be 13
Previous page Top Next page