Table of Contents Toggle VB CodeOutput – Len() In this example, you will learn about string handling function called Len() which return the length of a given string. VB Code Private Sub Command1_Click() Dim str As String str = Text1.Text Text2.Text = Len(str) End Sub Output – Len() Output – String Function – Len() Previous Next Tags:VB 6VB 6 Programming