Returns the number of characters in the a string text expression.
Syntax: |
---|
value = StringLength( inputString ) OR value = Len( inputString ) ' Short form usage: "Len" |
Parameter: |
Description: |
---|---|
inputString |
String being measured for its text character count. |
value |
Number of characters, including spaces in the string. |
Example: |
---|
VARIABLES: inputString TYPE: STRING
inputString = "Hello" value = StringLength( inputString ) ' Returns 5
inputString = "Goodbye"
value = StringLength( "Hello" ) ' Returns 5
|
Results: |
See example comments. |
Links: |
---|
|
See Also: |
Edit Time: 9/18/2020 1:57:22 PM |
Topic ID#: 30 |