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