Extensions.StringUtil.ToLower

From emotive
Jump to navigation Jump to search

Classification

Name ToLower
Short Description Convert to lowercase
Class Term
Extension OTX StringUtil extension
Group StringUtil related terms
Exceptions -
Checker Rules -
Standard Compliant Yes

OTL Syntax

StringTerm StringUtil.ToLower(StringTerm string);

Description

The ToLower term will return the lowercase 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 lowercase counterpart of a given string.

Properties

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

OTL Examples

/// Local Declarations

String String1;

/// Flow

String1 = StringUtil.ToLower("EMOTIVE");

See also

ReplaceSubString
MatchToRegularExpression
StringConcatenate
SubString
LengthOfString
IndexOf
SplitString
ToUpper
Encode
Decode