How to find the Length of the string
Posted on January 5, 2009
1 2 3 4 5 6 7 | 'String Manipulation - How to find the Length of the string Private Sub Main() Dim sText As String sText = "http://codeitbetter.com" MsgBox Len(sText) End Sub |
1 2 3 4 5 6 7 | 'String Manipulation - How to find the Length of the string Private Sub Main() Dim sText As String sText = "http://codeitbetter.com" MsgBox Len(sText) End Sub |