Len()
This function returns the length of the string, in terms of number of characters in it, including spaces, speacial characters, line feeds, etc.
Syntax:
= Len (String)
String = The string for which the length is to be determined
Example:
- = Len ("Excel") - result will be - 5
- = Len ("Matic") - result will be - 5
- = Len ("ExcelMatic") - result will be - 10
- = Len ("Excel Matic") - result will be - 11
- = Len ("## @@ $$") - result will be - 8 (The string here contains 6 special characters and 2 spaces)
0 comments:
Post a Comment