reverse()

Learn how to use the reverse() function to reverse the order of the input string.

Function reverses the order of the input string. If the input value isn’t of type string, then the function forcibly casts the value to type string.

Syntax

reverse(value)

Parameters

NameTypeRequiredDescription
valuestring✔️input value.

Returns

The reverse order of a string value.

Examples

print str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
| extend rstr = reverse(str)

Output

strrstr
ABCDEFGHIJKLMNOPQRSTUVWXYZZYXWVUTSRQPONMLKJIHGFEDCBA
print ['int'] = 12345, ['double'] = 123.45, 
['datetime'] = datetime(2017-10-15 12:00), ['timespan'] = 3h
| project rint = reverse(['int']), rdouble = reverse(['double']), 
rdatetime = reverse(['datetime']), rtimespan = reverse(['timespan'])

Output

rintrdoublerdatetimertimespan
5432154.321Z0000000.00:00:21T51-01-710200:00:30