Skip to main content
Workday User Guide
Last Updated: 2023-06-23
REVERSE

REVERSE

Description

REVERSE
is a row function that returns the characters of a string value in the opposite order.

Syntax

REVERSE
(
string_expression
)

Return Value

Returns one value per row of type
TEXT
.

Input Parameters

string_expression
Required. The name of a field or expression of type
TEXT
(or a literal string).

Examples

Return the string
123 Main Street
in reverse order:
REVERSE("123 Main Street")
Returns
teertS niaM 321
.