Extensions.StringUtil.LengthOfString
Revision as of 04:21, 8 August 2014 by Nb (talk | contribs) (Created page with "Category:StringUtil == Classification == {{ClassificationActivity | LengthOfString | Number of characters in a string | Term | OTX StringUtil extension...")
Contents
Classification
Name | LengthOfString |
Short Description | Number of characters in a string |
Class | Term |
Extension | OTX StringUtil extension |
Group | StringUtil related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
Pseudo-Code Syntax
Integer LengthOfString(String string);
Description
The LengthOfString term returns the number of characters in a string.
Return Value
The Term returns the value, see table below.
![]()
In OTX, Terms are categorized according to its return data type!
Data Type | Description |
Integer | The number of characters in a string |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
String | String | Term | - | [1] | The original string |
Examples
Integer result = LengthOfString("emotive");
//Returns result = 7
See also
ReplaceSubString
MatchToRegularExpression
StringConcatenate
SubString
IndexOf
SplitString
ToUpper
ToLower
Encode
Decode