Upper

This Flow Script tutorial explains how to use the Upper function with syntax and examples.

Description

The Upper function returns an all uppercase version of the input.

Syntax

‌The syntax for the Upper function is:

Upper(input)

Parameters

‌input - the string for which uppercase is to be set.

Returns

‌The Upper function returns a string.‌

Example

Let's look at some Upper function examples and explore how to use the Upper function.‌

Upper("hello world")
Result: HELLO WORLD

Upper("Hello World")
Result: HELLO WORLD

Last updated