Skip to content

StrReverse - Built-in String Function

Purpose

StrReverse returns a string with the order of the characters reversed.

Syntax

StrReverse(str)

Arguments

Argument Description
str Required. Any valid string expression from which the spaces will be removed.

Returns

String

Example

Let sTest = "Hello World"

Return StrReverse(sTest) // returns "dlroW olleH"
Return StrReverse({customer.name})
// when in above the customer name is "True Value Machine & Tool Comp"
// the result is: "pmoC looT & enihcaM eulaV eurT"

See Also

Notes

  • When str cannot be converted to a string, a runtime error is generated.