Como
Fazer:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(texto_entrada as text) =>
let
ListaComAcento = Text.ToList("ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜàáâãäåçèéêëìíîïòóôõöùúûü"),
ListaSemAcento = Text.ToList("AAAAAACEEEEIIIIOOOOOUUUUaaaaaaceeeeiiiiooooouuuu"),
ListaUnica = List.Zip({ListaComAcento, ListaSemAcento}),
ListaEntrada = Text.ToList(texto_entrada),
TrocarLetra = List.ReplaceMatchingItems(ListaEntrada, ListaUnica),
Resposta = Text.Combine(TrocarLetra)
in
Resposta
|
|
|
|
|
|
|
|
|
|
|
|
|
|