Skip to content

Removes the accents from a string, converting them to their non-accented corresponding characters.

License

Notifications You must be signed in to change notification settings

andreialecu/remove-accents

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

remove-accents

Removes the accents from a string, converting them to their corresponding non-accented ASCII characters.

npm install remove-accents

Build Status

About

An easy to use solution for converting all accented characters to their corresponding non-accented ASCII characters.

Syntax

removeAccents(inputString)

inputString

The string that you wish to remove accents from.

Usage

Call removeAccents() by passing the string you wish to remove accents from, and you will get the non-accented string as result.

var input = 'ÀÁÂÃÄÅ';
var output = removeAccents(input);

console.log(output); // AAAAAA

License

MIT

About

Removes the accents from a string, converting them to their non-accented corresponding characters.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%