OTX Reference  
OpenTestSystem.Otx.Extensions.StringUtil.Terms.ToLower Class Reference

Conversion to lowercase More...

Inheritance diagram for OpenTestSystem.Otx.Extensions.StringUtil.Terms.ToLower:
Inheritance graph

Public Attributes

StringTerm _string
 Cardinality [1]
Represents the input string whose lowercase counterpart shall be returned. More...
 
- Public Attributes inherited from OpenTestSystem.Otx.Core.Terms.Term
MetaData metaData
 Cardinality [0..1]
The MetaData type allows tools to store additional, mainly tool-specific data. More...
 

Detailed Description

Conversion to lowercase

The ToLower term converts all uppercase characters of the specified String to their lowercase and returns the result.

Important: The term only supports the ASCII CODE range (0x00 - 0x7F). Special characters such as "Ä" are not converted.

Syntax
StringTerm = StringUtil.ToLower(StringTerm string);
Examples
// Local Declarations
String String1;
// Flow
String1 = StringUtil.ToLower("EMOTIVE");

Member Data Documentation

◆ _string

StringTerm OpenTestSystem.Otx.Extensions.StringUtil.Terms.ToLower._string

Cardinality [1]
Represents the input string whose lowercase counterpart shall be returned.