Difference between revisions of "Extensions.StringUtil.ToUpper"
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
== OTL Syntax == | == OTL Syntax == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | StringTerm = ToUpper(StringTerm); | + | StringTerm = StringUtil.ToUpper(StringTerm); |
</syntaxhighlight> | </syntaxhighlight> | ||
== Description == | == Description == | ||
− | The '''ToUpper''' term | + | The '''ToUpper''' term shall return the uppercase counterpart of a given string. |
{{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The converted to uppercase string.}} | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The converted to uppercase string.}} | ||
Line 16: | Line 16: | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| String | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | | + | {{TableRowPropertie1| String | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | Represents the input string whose uppercase counterpart shall be returned.}} |
|} | |} | ||
== OTL Examples == | == OTL Examples == | ||
<syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | <syntaxhighlight lang="java" enclose="div" style="font-size: medium;"> | ||
− | String | + | String String1; |
− | + | ||
+ | /// Flow | ||
+ | |||
+ | String1 = StringUtil.ToUpper("emotive"); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 11:03, 3 October 2018
Contents
Classification
Name | ToUpper |
Short Description | Convert to uppercase |
Class | Term |
Extension | OTX StringUtil extension |
Group | StringUtil related terms |
Exceptions | - |
Checker Rules | - |
Standard Compliant | Yes |
OTL Syntax
StringTerm = StringUtil.ToUpper(StringTerm);
Description
The ToUpper term shall return the uppercase counterpart of a given 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 | The converted to uppercase string. |
Properties
Name | Data Type | Class | Default | Cardinality | Description |
String | String | Term | - | [1] | Represents the input string whose uppercase counterpart shall be returned. |
OTL Examples
String String1;
/// Flow
String1 = StringUtil.ToUpper("emotive");
See also
ReplaceSubString
MatchToRegularExpression
StringConcatenate
SubString
LengthOfString
IndexOf
SplitString
ToLower
Encode
Decode