upper()

Scalar. Returns a string where all the characters of a given string are uppercase.

Syntax

upper ( string )

Parameters

string

A string.

Usage

Returns a string where all the characters of a given string are uppercase. The argument of the function is a string, and the function returns a string.

Example

upper ('This Is A Test') returns 'THIS IS A TEST'.