Name
Len Function
Class
Microsoft.VisualBasic.Strings
Syntax
Len(expression)-
expression Use: Required
Data Type: Any
Any valid variable name or expression
Return Value
Integer
Description
Counts the number of characters within a string or the size of a given variable
Rules at a Glance
If
expressioncontainsNothing,Lenreturns 0.For a string or String variable,
Lenreturns the number of characters in the string.For a nonobject and nonstructure variable,
Lenreturns the number of bytes required to store the variable in memory.For a variable of type Object, Len returns the length of its data subtype. If the object is uninitialized, its length is 0. However, if the object contains a strongly typed class instance, an InvalidCastException exception is thrown.
For a structure,
Lenreturns the number of bytes required to store the structure as a file. (But see the comment in Section .)For a strongly typed object variable, such as one defined by the
Class...EndClassconstruct, Len generates an InvalidCastException exception.If
varnameis an array, you must also specify a valid subscript. In other words,Lencannot be used to determine the total number of elements in or the total size of an array.
Programming Tips and Gotchas
Lencannot accurately report the number of bytes required to store structures that contain variable-length strings. If you need to know how many bytes of storage space will be required by a structure that includes string members, you can fix the length of the strings ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access