vote up 5 vote down star
2

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 na(t)ive sorting would be very close to what a user would expect (or what a database would return). In XPath there is a function translate(), which does just that. 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?

flag

55% accept rate
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 at 19:14
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 at 19:24
I rephrased the question a bit to make that clear right from the start. – Tomalak Mar 9 at 19:34
@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 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 at 21:24
show 1 more comment

2 Answers

vote up 3 vote down check

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|flag
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
vote up 1 vote down

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 TranslateCallback = function(match) { 
      if (lookupLetters[match])
        return lookupLetters[match]; 
      else
        return match;
    }

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

You can use it like this:

$("table.sortable").tablesorter({ 
  textExtraction: GetTextExtractor()
});
link|flag

Your Answer

Get an OpenID
or

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