Reverses the order of characters in a string. Use it when you need to flip text values, generate unique transformations, or apply data manipulation for testing.
-
Reverse a simple word
{{reverse record.word}}Input:
{ "record": { "word": "abcde" } }Output:
edcba
-
Reverse a customer name
{{reverse record.firstName}}Input:
{ "record": { "firstName": "Jane" } }Output:
enaJ
Tip
-
Works on any string input; numbers are first treated as strings before reversing.
-
Whitespace and punctuation are preserved in reversed order.
-
Useful for debugging or creating obfuscated identifiers.