up vote 7 down vote favorite
9
share [g+] share [fb]

For a poor man's implementation of near-collation-correct sorting on the client side I need a JavaScript function that does efficient single character replacement in a string.

Here is what I mean (note that this applies to German text, other languages sort differently):

native sorting gets it wrong: a b c o u z ä ö ü
collation-correct would be:   a ä b c o ö u ü z

Basically, I need all occurrences of "ä" of a given string replaced with "a" (and so on). This way the result of native sorting would be very close to what a user would expect (or what a database would return).

Other languages have facilities to do just that: Python supplies str.translate(), in Perl there is tr/…/…/, XPath has a function translate(), ColdFusion has ReplaceList(). But what about JavaScript?

Here is what I have right now.

// s would be a rather short string (something like 
// 200 characters at max, most of the time much less)
function makeSortString(s) {
  var translate = {
    "ä": "a", "ö": "o", "ü": "u",
    "Ä": "A", "Ö": "O", "Ü": "U"   // probably more to come
  };
  var translate_re = /[öäüÖÄÜ]/g;
  return ( s.replace(translate_re, function(match) { 
    return translate[match]; 
  }) );
}

For starters, I don't like the fact that the regex is rebuilt every time I call the function. I guess a closure can help in this regard, but I don't seem to get the hang of it for some reason.

Can someone think of something more efficient?

link|improve this question

1  
You are wrong in your assumption that a user expects "ä" to be sorted with "a". The Swedish alphabet has 29 letters: abcdefghijklmnopqrstuvwxyzåäö and so does the Danish/Norwegian: abcdefghijklmnopqrstuvwxyzæøå. The expected order is: "Apelsin", "Banan", "Äpple". – some Mar 9 '09 at 19:14
1  
I know. The solution was intended to sort German text. Even there it is not correct, but good enough for the use case. This question never was meant to be the search for the "solves all problems" algorithm. – Tomalak Mar 9 '09 at 19:24
I rephrased the question a bit to make that clear right from the start. – Tomalak Mar 9 '09 at 19:34
1  
@Tomalak: I found your question when I was following a link from another question about "u" and "ü" and had to object. But since you now have clarified that it was for German, I have nothing further to object. – some Mar 9 '09 at 20:48
@some: I prefer a short discussion in the comments over a down-vote any time. Unfortunately there are people here that down vote first and ask questions later (if at all). Consequence: Your comment was appreciated. :) – Tomalak Mar 9 '09 at 21:24
show 1 more comment
feedback

5 Answers

up vote 4 down vote accepted

I can't speak to what you are trying to do specifically with the function itself, but if you don't like the regex being built every time, here are two solutions and some caveats about each.

Here is one way to do this:

function makeSortString(s) {
  if(!makeSortString.translate_re) makeSortString.translate_re = /[öäüÖÄÜ]/g;
  var translate = {
    "ä": "a", "ö": "o", "ü": "u",
    "Ä": "A", "Ö": "O", "Ü": "U"   // probably more to come
  };
  return ( s.replace(makeSortString.translate_re, function(match) { 
    return translate[match]; 
  }) );
}

This will obviously make the regex a property of the function itself. The only thing you may not like about this (or you may, I guess it depends) is that the regex can now be modified outside of the function's body. So, someone could do this to modify the interally-used regex:

makeSortString.translate_re = /[a-z]/g;

So, there is that option.

One way to get a closure, and thus prevent someone from modifying the regex, would be to define this as an anonymous function assignment like this:

var makeSortString = (function() {
  var translate_re = /[öäüÖÄÜ]/g;
  return function(s) {
    var translate = {
      "ä": "a", "ö": "o", "ü": "u",
      "Ä": "A", "Ö": "O", "Ü": "U"   // probably more to come
    };
    return ( s.replace(translate_re, function(match) { 
      return translate[match]; 
    }) );
  }
})();

Hopefully this is useful to you.


UPDATE: It's early and I don't know why I didn't see the obvious before, but it might also be useful to put you translate object in a closure as well:

var makeSortString = (function() {
  var translate_re = /[öäüÖÄÜ]/g;
  var translate = {
    "ä": "a", "ö": "o", "ü": "u",
    "Ä": "A", "Ö": "O", "Ü": "U"   // probably more to come
  };
  return function(s) {
    return ( s.replace(translate_re, function(match) { 
      return translate[match]; 
    }) );
  }
})();
link|improve this answer
What I'm trying to do is make the sorting of the jQuery tablesorter plugin work correctly for table data in German. The plugin can take an user-defined function to extract the string to sort on, which is what I have to do or the resulting sort order will be wrong. – Tomalak Nov 13 '08 at 15:18
Is this function really that inefficient? What have you done as far as testing? – Jason Bunting Nov 13 '08 at 15:30
I did not mean to say my implementation was inefficient. It's close to the most efficient way of doing it that I can think of. But I can't think of everything, so I hoped there was some really clever way of string manipulation that I was unaware of. – Tomalak Nov 13 '08 at 15:37
I see - well, I think your solution is sufficient; because I could see a use for this function in the long term, I did some basic testing. I did 5000 iterations on a string of 200 characters that contained at least one of these characters once every 8 characters and it took around 500 ms. – Jason Bunting Nov 13 '08 at 16:20
BTW, that testing was done in FF. In Chrome, it ran about the same; since Chrome's JS engine (V8) is quicker, generally speaking, it might be worth noting this fact, FWIW. – Jason Bunting Nov 13 '08 at 16:36
show 4 more comments
feedback

Based on the solution by Jason Bunting, here is what I use now.

The whole thing is for the jQuery tablesorter plug-in: For (nearly correct) sorting of non-English tables with tablesorter plugin it is necessary to make use of a custom textExtraction function.

This one:

  • translates the most common accented letters to unaccented ones (the list of supported letters is easily expandable)
  • changes dates in German format ('dd.mm.yyyy') to a recognized format ('yyyy-mm-dd')

Be careful to save the JavaScript file in UTF-8 encoding or it won't work.

// file encoding must be UTF-8!
function getTextExtractor()
{
  return (function() {
    var patternLetters = /[öäüÖÄÜáàâéèêúùûóòôÁÀÂÉÈÊÚÙÛÓÒÔß]/g;
    var patternDateDmy = /^(?:\D+)?(\d{1,2})\.(\d{1,2})\.(\d{2,4})$/;
    var lookupLetters = {
      "ä": "a", "ö": "o", "ü": "u",
      "Ä": "A", "Ö": "O", "Ü": "U",
      "á": "a", "à": "a", "â": "a",
      "é": "e", "è": "e", "ê": "e",
      "ú": "u", "ù": "u", "û": "u",
      "ó": "o", "ò": "o", "ô": "o",
      "Á": "A", "À": "A", "Â": "A",
      "É": "E", "È": "E", "Ê": "E",
      "Ú": "U", "Ù": "U", "Û": "U",
      "Ó": "O", "Ò": "O", "Ô": "O",
      "ß": "s"
    };
    var letterTranslator = function(match) { 
      return lookupLetters[match] || match;
    }

    return function(node) {
      var text = $.trim($(node).text());
      var date = text.match(patternDateDmy);
      if (date)
        return [date[3], date[2], date[1]].join("-");
      else
        return text.replace(patternLetters, letterTranslator);
    }
  })();
}

You can use it like this:

$("table.sortable").tablesorter({ 
  textExtraction: getTextExtractor()
}); 
link|improve this answer
Don't know if someone will see my comment but i need the same function for some accented letter in portuguese and i cant manage to make it work. Should the concerned letters in my php file be called by the 'html code': Í or by typing directly the 'Í' letter ? I tryed both, nothing works. And yeah i changed the js function to suit my needs with the Í and í letters and my js is encoded utf-8. – kevin Mar 16 '10 at 21:28
@kevin: Of course someone notices the comment. ;-) The character in your HTML (which is produced by that PHP file, I presume) can be Í or the actual Í. It makes no difference as long as encoding settings are correct (actual PHP file encoding, PHP server percieved file encoding, HTTP Content-Type header, HTML meta tags). Using the HTML entity may be safest. If the .js file is UTF-8 encoded, it must be served as such (text/javascript; Charset=UTF-8), then all should be well. – Tomalak Mar 16 '10 at 22:32
Thanks for noticing ;-), i checked and tried in may ways what you said, it just doesn't go. Could this be due to other js files being called in the same php page ? If u wanna give a look, it's here: schulz-al.tempsite.ws/br/?page_id=51 . Thanks for help, apreciated. – kevin Mar 18 '10 at 15:08
@kevin: BTW check your references to sitemap-up.gif and sitemap-down.gif, I get 401 Access Denied for them. – Tomalak Mar 18 '10 at 16:48
@kevin: Next thing: Your scripts are being served as Content-Type: text/html without a Charset parameter. They should at least be Content-Type: text/javascript;. Also, your GetTextExtractor() method (the one in jquery.tablesorter.min.js) differs quite heavily from my function, no idea why you think your's could work. ;-) Tip: Put the text extractor into scripts.js, not into the tablesorter plugin code. You should not touch the plugin code to avoid future headaches. – Tomalak Mar 18 '10 at 16:57
show 7 more comments
feedback

I made a Prototype Version of this:

String.prototype.strip = function() {
  var translate_re = /[öäüÖÄÜß ]/g;
  var translate = {
    "ä":"a", "ö":"o", "ü":"u",
    "Ä":"A", "Ö":"O", "Ü":"U",
    " ":"_", "ß":"ss"   // probably more to come
  };
    return (this.replace(translate_re, function(match){
        return translate[match];})
    );
};

Use like:

var teststring = 'ä ö ü Ä Ö Ü ß';
teststring.strip();

This will will change the String to a_o_u_A_O_U_ss

link|improve this answer
feedback

I think this might work a little cleaner/better (though I haven't test it's performance):

String.prototype.stripAccents = function() {
    var translate_re = /[àáâãäçèéêëìíîïñòóôõöùúûüýÿÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ]/g;
    var translate = 'aaaaaceeeeiiiinooooouuuuyyAAAAACEEEEIIIINOOOOOUUUUY';
    return (this.replace(translate_re, function(match){
        return translate.substr(translate_re.source.indexOf(match)-1, 1); })
    );
};

Or if you are still too worried about performance, let's get the best of both worlds:

String.prototype.stripAccents = function() {
    var in_chrs =  'àáâãäçèéêëìíîïñòóôõöùúûüýÿÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ',
        out_chrs = 'aaaaaceeeeiiiinooooouuuuyyAAAAACEEEEIIIINOOOOOUUUUY', 
        transl = {};
    eval('var chars_rgx = /['+in_chrs+']/g');
    for(var i = 0; i < in_chrs.length; i++){ transl[in_chrs.charAt(i)] = out_chrs.charAt(i); }
    return this.replace(chars_rgx, function(match){
        return transl[match]; });
};

EDIT (by @Tomalak)

I appreciate the idea. However, there are several things wrong with the implementation, as outlined in the comment below.

Here is how I would implement it.

var stripAccents = (function () {
  var in_chrs   = 'àáâãäçèéêëìíîïñòóôõöùúûüýÿÀÁÂÃÄÇÈÉÊËÌÍÎÏÑÒÓÔÕÖÙÚÛÜÝ',
      out_chrs  = 'aaaaaceeeeiiiinooooouuuuyyAAAAACEEEEIIIINOOOOOUUUUY', 
      chars_rgx = new RegExp('[' + in_chrs + ']', 'g'),
      transl    = {}, i,
      lookup    = function (m) { return transl[m] || m; };

  for (i=0; i<in_chrs.length; i++) {
    transl[ in_chrs[i] ] = out_chrs[i];
  }

  return function (s) { return s.replace(chars_rgx, lookup); }
})();
link|improve this answer
Why would you think that this works better? I assume object lookup is a lot faster than String.indexOf(). – Tomalak Dec 13 '11 at 14:23
Tomalak, I added another way of doing it that gathers the best of both worlds (readability and performance), I could eventually take it a step further and cache the char_rgx object, but I don't think it makes much sense unless if working with real-time precision... – Martin_Lakes Dec 13 '11 at 18:03
Sorry, but there are several things wrong with this code. First-off, its inappropriate use of eval(). There is new RegExp() for that. Second, it modifies the String prototype. Modifying built-in data types is very widely frowned upon. Third, the function runs a for-each-character loop with every invocation. This is what I've been trying to avoid in the first place. This means it fixes readability at the expense of performance, which I consider a bad trade-off. I appreciate the idea, but the execution is sub-optimal. :) – Tomalak Dec 13 '11 at 19:38
feedback

For Corporate reason, I have still to support IE6 : "in_chrs.charAt(i)" works fine, but not "in_chrs[i]" which result is "undefined".

I have to use :

  for (i=0; i<in_chrs.length; i++) {
    transl[ in_chrs.charAt(i) ] = out_chrs.charAt(i);
  }

Thanks for the solution anyway.

link|improve this answer
Correct, IE6 does not support indexing into a string with square brackets. charAt() is just as good. – Tomalak Jan 26 at 14:30
feedback

Your Answer

 
or
required, but never shown

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