I need unaccent a text that I get from an input text to compare with another with no accents, it's posible?
Develop games in your browser. Powerful, performant & highly capable.
you need "translate" accented to unaccented characters...replace(Input.Text,"accented","unaccent")
something like:
replace(Input.Text,"Ä,"A")
replace(Input.Text,"Õ ,"O")
replace(Input.Text,"Æ" ,"AE").....etc
works fine, thanks
alguillenar ..and something like this can work
capx: http://s000.tinyupload.com/index.php?fi ... 4328374295
just fill first array with accented characters...
and second with replacements...at the same array index..