Search
 
SCRIPT & CODE EXAMPLE
 

HTML

Remover Acentos

public static string removerAcentos(string texto)
{
    string comAcentos = "ÄÅÁÂÀÃäáâàãÉÊËÈéêëèÍÎÏÌíîïìÖÓÔÒÕöóôòõÜÚÛüúûùÇç";
    string semAcentos = "AAAAAAaaaaaEEEEeeeeIIIIiiiiOOOOOoooooUUUuuuuCc";

    for (int i = 0; i < comAcentos.Length; i++)
    {
        texto = texto.Replace(comAcentos[i].ToString(), semAcentos[i].ToString());
    }
    return texto;
}
Comment

PREVIOUS NEXT
Code Example
Html :: date 
Html :: https://progate.com/images/html/beginner/school.jpg 
Html :: embed live crypto transactions map across multiple wallets and exchanges 
Html :: close button 
Html :: erc20 symbol format 
Html :: animate image or text html 
Html :: javascript toggle div 
Html :: select html gray safari 
Html :: how to set up html basic workspace 
Html :: convert js to html 
Html :: html5 development 
Html :: difference between core attribute and generic attributes in html 
Html :: html disclaimer text 
Html :: json to html 
Html :: mdn html map 
Html :: como remover primeiro elemento de um array javascript 
Html :: thtrhthth 
Html :: when i add img on html then it just show me the image icon not image solution 
Html :: Heading Tag Checker 
Html :: 7th science book 
Html :: spin the wheel html 
Html :: animated dots 
Html :: convert web to application 
Html :: nepal location 
Html :: %2f in query 
Html :: group by design bold vuetify table 
Html :: alive 
Html :: convert markdown to styled html 
Html :: codigo responsive css 
Html :: target parent html 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =