Text.Reverse

La función Text.Reverse devuelve un texto invertido.

Sintaxis

Text.Reverse(
    text as nullable text
) as nullable text

Parámetros
  • text: texto a invertir
Información adicional

La función invierte todo el texto manteniendo el tipo de cada carácter (mayúsculas, letras acentuadas, espacios y signos de puntuación, etc.).

Ejemplos

Invertimos el texto "Power BI":

Text.Reverse("Power BI")

IB rewoP

Función Text.Reverse

Text.Reverse("ÁaÑñ")

ñÑaÁ

Text.Reverse("123456789")

987654321

Categoría
Funciones de texto
Enviado por admin el Dom, 15/03/2020 - 09:40