Click or drag to resize
ToLower

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

The TOPICA Basic function ToLower is used to convert a string value to lower case.

Syntax
ToLower(stringValue)
Parameters

Name

Type

Description

stringValue

String

The string value to convert to lower case.

Returns

Input string (stringValue) converted to lower case.

Type: String.

Examples
ToLower("ABC")

Result: "abc"

ToLower("Cde")

Result: "cde"

ToLower("Abc" + "Def")

Result: "abcdef"