-
-
Save mariano-aguero/77835193e1f37164285662d46ad0870a to your computer and use it in GitHub Desktop.
AngularJS `removeAccents` filter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('utils.filters', []) | |
.filter('removeAccents', removeAccents); | |
function removeAccents() { | |
return function (source) { | |
var accent = [ | |
/[\300-\306]/g, /[\340-\346]/g, // A, a | |
/[\310-\313]/g, /[\350-\353]/g, // E, e | |
/[\314-\317]/g, /[\354-\357]/g, // I, i | |
/[\322-\330]/g, /[\362-\370]/g, // O, o | |
/[\331-\334]/g, /[\371-\374]/g, // U, u | |
/[\321]/g, /[\361]/g, // N, n | |
/[\307]/g, /[\347]/g, // C, c | |
], | |
noaccent = ['A','a','E','e','I','i','O','o','U','u','N','n','C','c']; | |
for (var i = 0; i < accent.length; i++){ | |
source = source.replace(accent[i], noaccent[i]); | |
} | |
return source; | |
}; | |
} // removeAccents |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment