Extensions.StringUtil.ToUpper

From emotive
Jump to navigation Jump to search

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 string);

Description

The ToUpper term will return the uppercase counterpart of a given 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 The converted to uppercase string.

Properties

Name Data Type Class Default Cardinality Description
String String Term - [1] Represents the input string whose uppercase counterpart will be returned.

OTL Examples

/// Local Declarations

String String1;

/// Flow

String1 = StringUtil.ToUpper("emotive");

See also

ReplaceSubString
MatchToRegularExpression
StringConcatenate
SubString
LengthOfString
IndexOf
SplitString
ToLower
Encode
Decode