The Length() function in String Class returned the number of characters occurred in a String.
System.String.Length() As Integer
Returns:
Integer : The number of characters in the specified String
For ex:
"This is a Test".Length() returns 14.
VB.NET SourceCode
When you execute this source code you will get 17 in the messagebox.