Extensions.StringUtil.StringConcatenate

From emotive
Revision as of 06:53, 16 February 2016 by Hb (talk | contribs) (→‎Classification)
Jump to navigation Jump to search

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.

Icons Note.png 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