Não estou sabendo como retirar acentos da coluna MUNICIPIO
removeDiacritic("$$")???
Como devo fazer ai?
Não estou sabendo como retirar acentos da coluna MUNICIPIO
removeDiacritic("$$")???
Como devo fazer ai?
Hi @Maia_Marcello , you can use the string Normalizer to do this. Unfortunately, I don’t know how to import the library in the Column Expressions.
Consequently, I did it in Java via the Java Snippet:
Just need to import the java.text.Normalizer:
import java.text.Normalizer;
And the code is just this:
String normalized = Normalizer.normalize(c_column1, Normalizer.Form.NFD);
out_removedaccent = normalized.replaceAll("[^\\p{ASCII}]", "");
EDIT: Here’s the test workflow in case you need it: Remove accents.knwf (6.6 KB)
Hi @ipazin , oh there is? I did not notice it. I was about to suggest that we have some sort of function like this lol.
Thanks for the info
Boa tarde caríssimos.
Estou com dificuldade de eliminar alguns atributos de uma coluna.