Classification
OTL Syntax
StringTerm = StringUtil.StringConcatenate({StringTerm1, StringTerm2, ...});
Description
The StringConcatenate term shall yield a new string which is the concatenation of two or more strings.
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
|
String |
String |
Term |
- |
[2..*] |
The elements represent the strings that shall be concatenated.
|
OTL Examples
String String1;
/// Flow
String1 = StringUtil.StringConcatenate({"emotive", "company"});
See also
ReplaceSubString
MatchToRegularExpression
SubString
LengthOfString
IndexOf
SplitString
ToUpper
ToLower
Encode
Decode