Using JavaScript to perform text matches with/without accented characters
There is a way to ““deaccent” the string being compared” without the use of a substitution function that lists all the accents you want to remove… Here is the easiest solution I can think about to remove accents (and other diacritics) from a string. See it in action: var string = ‘Ça été Mičić. ÀÉÏÓÛ’; … Read more