Articles in this section

reverse helper

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.

Usage

{{reverse value}}
  • value (required): string to be reversed

Examples

  1. Reverse a simple word

    {{reverse record.word}}
    

    Input:

    { "record": { "word": "abcde" } }
    

    Output:

    edcba
    
  2. 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.