Click or drag to resize
ToUpper

[This is preliminary documentation and is subject to change.]

The TOPICA Basic function ToUpper is used to convert a string value to upper case.

Syntax
ToUpper(stringValue)
Parameters

Name

Type

Description

stringValue

String

The string value to convert to upper case.

Returns

Input string (stringValue) converted to upper case.

Type: String.

Examples
ToUpper("abc")

Result: "ABC"

ToUpper("Cde")

Result: "CDE"

ToUpper("Abc" + "Def")

Result: "ABCDEF"