F$UPCASE()

Description

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

Call Signature

string F$UPCASE ( string input_string )

Return Value

string

Returns a string containing the converted result.

Argument

string input_string:

String value to be converted.

Example

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


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

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