reverse()
Se aplica a: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
La función invierte el orden de la cadena de entrada.
Si el valor de entrada no es de tipo string
, la función convierte forzosamente el valor en el tipo string
.
Sintaxis
reverse(
value)
Obtenga más información sobre las convenciones de sintaxis.
Parámetros
Nombre | Type | Obligatorio | Description |
---|---|---|---|
value | string |
✔️ | valor de entrada. |
Devoluciones
Orden inverso de un valor de cadena.
Ejemplos
print str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
| extend rstr = reverse(str)
Salida
str | rstr |
---|---|
ABCDEFGHIJKLMNOPQRSTUVWXYZ | ZYXWVUTSRQPONMLKJIHGFEDCBA |
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'])
Salida
rint | rdouble | rdatetime | rtimespan |
---|---|---|---|
54321 | 54.321 | Z0000000.00:00:21T51-01-7102 | 00:00:30 |