Extensions.StringUtil.StringConcatenate
Revision as of 04:03, 8 August 2014 by Nb (talk | contribs) (Created page with "Category:StringUtil == Classification == {{ClassificationActivity | StringConcatenate | Concatenation of strings | Term | OTX StringUtil extension | S...")
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 |
Pseudo-Code Syntax
String StringConcatenate(String string1, String string2);
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 |
Examples
String result = StringConcatenate("emotive", " ", "GmbH");
//Returns result = "emotive GmbH"
See also
ReplaceSubString
MatchToRegularExpression
SubString
LengthOfString
IndexOf
SplitString
ToUpper
ToLower
Encode
Decode