Difference between revisions of "Extensions.StringUtil.StringConcatenate"
Jump to navigation
Jump to search
(Created page with "Category:StringUtil == Classification == {{ClassificationActivity | StringConcatenate | Concatenation of strings | Term | OTX StringUtil extension | S...") |
|||
Line 3: | Line 3: | ||
{{ClassificationActivity | StringConcatenate | Concatenation of strings | [[Term]] | [[StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | [[OutOfBoundsException]] | - }} | {{ClassificationActivity | StringConcatenate | Concatenation of strings | [[Term]] | [[StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | [[OutOfBoundsException]] | - }} | ||
− | == | + | == OTL Syntax == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | + | StringTerm = StringConcatenate({StringTerm1, StringTerm2, ...}); | |
</syntaxhighlight> | </syntaxhighlight> | ||
Line 20: | Line 20: | ||
|} | |} | ||
− | == Examples == | + | == OTL Examples == |
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | String | + | String String1; |
− | + | ||
+ | String1 = StringConcatenate({"emotive", "company"}); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 10:35, 10 February 2015
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