F$LOWCASE()

Description

F$LOWCASE() is used to convert upper case characters in a string to lower case.

Call Signature

string F$LOWCASE ( string input_string )

Return Value

string

A copy of the input string with upper case characters converted to lower case.

Argument

string input_string:

String value to be converted.

Example

The following command fetches user input and converts the resulting string to lower case.


  local string title
  INPUT "Enter Report Title: " title
  title = F$LOWCASE(title)

© PCI Geomatics Enterprises, Inc.®, 2026. All rights reserved.