Difference between revisions of "Extensions.StringUtil.LengthOfString"

From emotive
Jump to navigation Jump to search
Line 1: Line 1:
{{DISPLAYTITLE:'''LengthOfString '''}}[[Category:StringUtil]]
+
{{DISPLAYTITLE:'''LengthOfString'''}}[[Category:StringUtil]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | LengthOfString | Number of characters in a string | [[Term]] | [[Extensions.StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | - | - }}
+
{{ClassificationActivity | LengthOfString | Number of characters in a string | [[Term]] | [[Extensions.StringUtil|OTX StringUtil extension]] | [[Extensions.StringUtil#Terms|StringUtil related terms]] | - | - }}
  
 
== OTL Syntax ==
 
== OTL Syntax ==
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
 
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;">
IntegerTerm = LengthOfString(StringTerm);
+
IntegerTerm = StringUtil.LengthOfString(StringTerm);
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 
== Description ==
 
== Description ==
The '''LengthOfString''' term returns the number of characters in a string.
+
The '''LengthOfString''' term shall return the number of characters constituting a given string.
  
 
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.Integer|Integer]] | The number of characters in a string}}
 
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.Integer|Integer]] | The number of characters in a string}}
Line 16: Line 16:
 
{| {{TableHeader}}
 
{| {{TableHeader}}
 
{{TableRowPropertiesHeader}}
 
{{TableRowPropertiesHeader}}
{{TableRowPropertie1| String | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | The original string}}
+
{{TableRowPropertie2| String | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | Represents the input string whose length shall be retrieved.}}
 
|}
 
|}
  
Line 23: Line 23:
 
Integer Integer1;
 
Integer Integer1;
  
Integer1 = LengthOfString("emotive company");
+
/// Flow
 +
 
 +
Integer1 = StringUtil.LengthOfString("emotive company");
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Revision as of 09:24, 3 October 2018

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

OTL Syntax

IntegerTerm = StringUtil.LengthOfString(StringTerm);

Description

The LengthOfString term shall return the number of characters constituting a given string.

Return Value

The Term returns the value, see table below.

Icons Note.png 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] Represents the input string whose length shall be retrieved.

OTL Examples

Integer Integer1;

/// Flow

Integer1 = StringUtil.LengthOfString("emotive company");

See also

ReplaceSubString
MatchToRegularExpression
StringConcatenate
SubString
IndexOf
SplitString
ToUpper
ToLower
Encode
Decode