Difference between revisions of "Extensions.StringUtil.ToUpper"
Jump to navigation
Jump to search
m (Hb moved page ToUpper to Extensions.StringUtil.ToUpper: #3153) |
|||
Line 1: | Line 1: | ||
− | [[Category:StringUtil]] | + | {{DISPLAYTITLE:'''ToUpper '''}}[[Category:StringUtil]] |
== Classification == | == Classification == | ||
− | {{ClassificationActivity | ToUpper | Convert to uppercase | [[Term]] | [[StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | - | - }} | + | {{ClassificationActivity | ToUpper | Convert to uppercase | [[Term]] | [[Extensions.StringUtil|OTX StringUtil extension]] | [[StringUtil related terms]] | - | - }} |
== OTL Syntax == | == OTL Syntax == | ||
Line 11: | Line 11: | ||
The '''ToUpper''' term converts all lowercase characters of the specified string into their uppercase and returns the result. | The '''ToUpper''' term converts all lowercase characters of the specified string into their uppercase and returns the result. | ||
− | {{TermReturnValue| [[String]] | The converted to uppercase string.}} | + | {{TermReturnValue| [[Core.DataTypes.SimpleDataType.String|String]] | The converted to uppercase string.}} |
== Properties == | == Properties == | ||
{| {{TableHeader}} | {| {{TableHeader}} | ||
{{TableRowPropertiesHeader}} | {{TableRowPropertiesHeader}} | ||
− | {{TableRowPropertie1| String | [[String]] | [[Term]] | - | [1] | The original string}} | + | {{TableRowPropertie1| String | [[Core.DataTypes.SimpleDataType.String|String]] | [[Term]] | - | [1] | The original string}} |
|} | |} | ||
Line 26: | Line 26: | ||
== See also == | == See also == | ||
− | [[ReplaceSubString]] <br/> | + | [[Extensions.StringUtil.ReplaceSubString|ReplaceSubString]] <br/> |
− | [[MatchToRegularExpression]] <br/> | + | [[Extensions.StringUtil.MatchToRegularExpression|MatchToRegularExpression]] <br/> |
− | [[StringConcatenate]] <br/> | + | [[Extensions.StringUtil.StringConcatenate|StringConcatenate]] <br/> |
− | [[SubString]] <br/> | + | [[Extensions.StringUtil.SubString|SubString]] <br/> |
− | [[LengthOfString]] <br/> | + | [[Extensions.StringUtil.LengthOfString|LengthOfString]] <br/> |
− | [[IndexOf]] <br/> | + | [[Extensions.StringUtil.IndexOf|IndexOf]] <br/> |
− | [[SplitString]] <br/> | + | [[Extensions.StringUtil.SplitString|SplitString]] <br/> |
− | [[ToLower]] <br/> | + | [[Extensions.StringUtil.ToLower|ToLower]] <br/> |
− | [[Encode]] <br/> | + | [[Extensions.StringUtil.Encode|Encode]] <br/> |
− | [[Decode]] | + | [[Extensions.StringUtil.Decode|Decode]] |
Revision as of 03:43, 16 February 2016
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 = ToUpper(StringTerm);
Description
The ToUpper term converts all lowercase characters of the specified string into their uppercase and returns the result.
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] | The original string |
OTL Examples
String result;
result = ToUpper("emotive");
See also
ReplaceSubString
MatchToRegularExpression
StringConcatenate
SubString
LengthOfString
IndexOf
SplitString
ToLower
Encode
Decode