Len() |
Top Previous Next |
Len() - Determine the length of a string Description The Len() function is used to determine the length or number of characters in a string. Len(String) Example Count = Len("Welcome") 'returns 7
MyVar = "The quick brown fox" Count = Len(MyVar) 'returns 19 |