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

Conversion to uppercase More...

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

Public Attributes

StringTerm _string
 Cardinality [1]
Represents the input string whose uppercase 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 uppercase

The ToUpper term converts all lowercase characters of the specified String to their uppercase 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.ToUpper(StringTerm string);
Examples
// Local Declarations
String String1;
// Flow
String1 = StringUtil.ToUpper("emotive");

Member Data Documentation

◆ _string

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

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