Mega Code Archive

 
Categories / VisualBasic Script / String Functions
 

Get the length of a String

Sub GetLengthOfString()    Dim stFullName As String       stFullName = "C:\asdf\asdf.xls"     MsgBox Len(stFullName) End Sub