For the complete documentation index, see llms.txt. This page is also available as Markdown.

Reverse

The Reverse() function returns a text value with all characters in the opposite order: the last character of string becomes the first character of the result.

The function does not change the characters themselves, so casing, spaces and punctuation are kept as they are.

This function is NOT SQL compatible. For more information about SQL compatibility, see our documentation.

Syntax

Reverse(string)

Reverse("WEM") => "MEW"

Reverse("Level") => "leveL"

Parameters

Name
Type
Required
Description

string

Text

☑️

the text value you want to reverse

Last updated

Was this helpful?