Difference between revisions of "Extensions.StringUtil.StringConcatenate"
Jump to navigation
Jump to search
m (Hb moved page StringConcatenate to Extensions.StringUtil.StringConcatenate: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:StringUtil]] | + | {{DISPLAYTITLE:'''StringConcatenate '''}}[[Category:StringUtil]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | StringConcatenate | Concatenation of strings | [[Term]] | [[StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | [[OutOfBoundsException]] | - }} | + | {{ClassificationActivity | StringConcatenate | Concatenation of strings | [[Term]] | [[Extensions.StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | [[OutOfBoundsException]] | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''StringConcatenate''' term returns the concatenation of two or more string. | The '''StringConcatenate''' term returns the concatenation of two or more string. | ||
− | {{TermReturnValue| [[String]] | Concatenation of two or more strings}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | Concatenation of two or more strings}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| String1 | [[String]] | [[Term]] | - | [1] | The string that is concatenated}} | + | {{TableRowPropertie1| String1 | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | The string that is concatenated}} |
− | {{TableRowPropertie2| String2 | [[String]] | [[Term]] | - | [1] | The string that is concatenated}} | + | {{TableRowPropertie2| String2 | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | The string that is concatenated}} |
|} | |} | ||
Line 28: | Line 28: | ||
== See also == | == See also == | ||
− | [[ReplaceSubString]] <br/> | + | [[Extensions.StringUtil.ReplaceSubString|ReplaceSubString]] <br/> |
− | [[MatchToRegularExpression]] <br/> | + | [[Extensions.StringUtil.MatchToRegularExpression|MatchToRegularExpression]] <br/> |
− | [[SubString]] <br/> | + | [[Extensions.StringUtil.SubString|SubString]] <br/> |
− | [[LengthOfString]] <br/> | + | [[Extensions.StringUtil.LengthOfString|LengthOfString]] <br/> |
− | [[IndexOf]] <br/> | + | [[Extensions.StringUtil.IndexOf|IndexOf]] <br/> |
− | [[SplitString]] <br/> | + | [[Extensions.StringUtil.SplitString|SplitString]] <br/> |
− | [[ToUpper]] <br/> | + | [[Extensions.StringUtil.ToUpper|ToUpper]] <br/> |
− | [[ToLower]] <br/> | + | [[Extensions.StringUtil.ToLower|ToLower]] <br/> |
− | [[Encode]] <br/> | + | [[Extensions.StringUtil.Encode|Encode]] <br/> |
− | [[Decode]] | + | [[Extensions.StringUtil.Decode|Decode]] |
Revision as of 03:38, 16 February 2016
Contents
Classification
Name | StringConcatenate |
Short Description | Concatenation of strings |
Class | Term |
Extension | OTX StringUtil extension |
Group | StringUtil related terms |
Exceptions | OutOfBoundsException |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = StringConcatenate({StringTerm1, StringTerm2, ...});
Description
The StringConcatenate term returns the concatenation of two or more 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 |
String | Concatenation of two or more strings |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
String1 | String | Term | - | [1] | The string that is concatenated |
String2 | String | Term | - | [1] | The string that is concatenated |
OTL Examples
String String1;
String1 = StringConcatenate({"emotive", "company"});
See also
ReplaceSubString
MatchToRegularExpression
SubString
LengthOfString
IndexOf
SplitString
ToUpper
ToLower
Encode
Decode