vote up 1 vote down star
1

How do I remove accentuated characters from a string ? Especially in IE6, I had something like this :

		accentsTidy = function(s){
			var r=s.toLowerCase();
			r = r.replace(new RegExp(/\s/g),"");
			r = r.replace(new RegExp(/[àáâãäå]/g),"a");
			r = r.replace(new RegExp(/æ/g),"ae");
			r = r.replace(new RegExp(/ç/g),"c");
			r = r.replace(new RegExp(/[èéêë]/g),"e");
			r = r.replace(new RegExp(/[ìíîï]/g),"i");
			r = r.replace(new RegExp(/ñ/g),"n");				
			r = r.replace(new RegExp(/[òóôõö]/g),"o");
			r = r.replace(new RegExp(/œ/g),"oe");
			r = r.replace(new RegExp(/[ùúûü]/g),"u");
			r = r.replace(new RegExp(/[ýÿ]/g),"y");
			r = r.replace(new RegExp(/\W/g),"");
			return r;
		};

but IE6 bugs me, seems it doesn't like my regular expression.


Stupid me, encoding problem. The above code actually works with charset attribute "UTF-8" in my script tag, instead of wrong "utf-8" apparently unrecognized by IE6.

flag

1  
why on earth would you want to remove accents? This looks like some kind of forced Anglicization of names.... and a poor one at that. '山田太郎' would just become an empty string. – Jonathan Fingland Jun 13 at 15:56
I want to sort alphabetically in a real alphabetical order, without having the accentuated letters systematically at the end. May I ? (And I am French, so anglicization... :) ) – subtenante Jun 13 at 16:02

2 Answers

vote up 2 vote down check

You can create regex's in multiple ways. Using the new Regex constructor:

var re = new RegExp("[a-z]", "ig") //(string patter, string modifiers)

Or using the regex literal notation:

var re = /[a-z]/ig; // /patern/modifiers

You have mixed the two.

link|flag
vote up 4 vote down

The format for new RegExp is

RegExp(something, 'modifiers');

So you would want

accentsTidy = function(s){
                        var r=s.toLowerCase();
                        r = r.replace(new RegExp("\\s", 'g'),"");
                        r = r.replace(new RegExp("[àáâãäå]", 'g'),"a");
                        r = r.replace(new RegExp("æ", 'g'),"ae");
                        r = r.replace(new RegExp("ç", 'g'),"c");
                        r = r.replace(new RegExp("[èéêë]", 'g'),"e");
                        r = r.replace(new RegExp("[ìíîï]", 'g'),"i");
                        r = r.replace(new RegExp("ñ", 'g'),"n");                            
                        r = r.replace(new RegExp("[òóôõö]", 'g'),"o");
                        r = r.replace(new RegExp("œ", 'g'),"oe");
                        r = r.replace(new RegExp("[ùúûü]", 'g'),"u");
                        r = r.replace(new RegExp("[ýÿ]", 'g'),"y");
                        r = r.replace(new RegExp("\\W", 'g'),"");
                        return r;
                };
link|flag
+1 for Ian. @subtenante see: developer.mozilla.org/en/… – Jonathan Fingland Jun 13 at 15:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.