reverse()
Aplica-se a: ✅Microsoft Fabric✅Azure Data Explorer✅Azure Monitor✅Microsoft Sentinel
A função inverte a ordem da string de entrada.
Se o valor de entrada não for do tipo string
, a função forçará a conversão do valor para o tipo string
.
Sintaxe
reverse(
value)
Saiba mais sobre as convenções de sintaxe.
Parâmetros
Nome | Digitar | Obrigatória | Description |
---|---|---|---|
value | string |
✔️ | valor de entrada. |
Devoluções
A ordem inversa de um valor de cadeia de caracteres.
Exemplos
print str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
| extend rstr = reverse(str)
Saída
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'])
Saída
rint | rdouble | rdatetime | rtimespan |
---|---|---|---|
54321 | 54.321 | Z0000000.00:00:21T51-01-7102 | 00:00:30 |