I created a new parser for the tablesorter javascript plugin, which works fine in all browsers but IE7!

$.tablesorter.addParser({
    id: 'currencyXYZ',
    is: function (s) {return /[^\d]*$/.test(s);},
    format: function (s) {return $.tablesorter.formatFloat(s.replace(new RegExp(/[^\d]/g),''));},
    type: 'numeric'
});

Basically I'm replacing all characters except numbers from the table cell, right? If in my table cell I have "from £500", it returns "500", but on IE7 I'm getting something like "1.09387348273428e+35"... What am I doing wrong?

link|improve this question
What are you doing wrong? I'm very tempted to say 'using IE7'. Is there any chance you could break it apart, dump out the return from the s.replace operation so we can see what that generates? – Jeff Parker Apr 27 '11 at 10:05
Hi Jeff, I wish I could stop supporting IE7........... I'm not supporting IE6 anymore and it has been a long battle... I've just changed to my original customised parser, and on IE7 I get only the last digit: – plunctplactzoom Apr 27 '11 at 10:22
$.tablesorter.addParser({ id: 'currencyXYZ', is: function (s) {return /[£,from\s]*$/.test(s);}, format: function (s) {return $.tablesorter.formatFloat(s.replace(new RegExp(/[£,from\s]/g),''));}, type: 'numeric' }); – plunctplactzoom Apr 27 '11 at 10:23
I've tried a parse using IETester in IE7 mode ... even in IE6 mode, and noticed no problems. I suppose there could be something funky going on with the character encoding, but I'm not sure what at the moment. Any chance you could post a full HTML example on jsfiddle.net or similar? – Jeff Parker Apr 27 '11 at 10:53
Sorry Jeff, there's more. My table cells look pretty much like this: – plunctplactzoom Apr 27 '11 at 11:10
show 2 more comments
feedback

2 Answers

up vote 0 down vote accepted

Why not try something like this instead?

format: function (s) {
    var re = new RegExp(/£([\d][\d,]+)/g);
    var m = re.exec(s);
    return m == null ? 0 : m[1].replace(',', '');
}

This will proactively look for the first value that conforms to £\d[\d,]+, returning only the numeric component. You may need to tweak this if you support multiple currencies, international number formats, etc.

link|improve this answer
Jeff! It worked like a charm! Thank you very much! I only had to amend the variable to var m = re.exec(s); to get it working! :) – plunctplactzoom Apr 27 '11 at 13:38
Good spot ... I tested it in a harness which didn't use quite the same interface. Bad Jeff. I'm glad it worked either way :) – Jeff Parker Apr 27 '11 at 13:52
feedback

The first problem is that you are passing a regex literal to the RegExp constructor function which wants a string. i.e. This is bad syntax:

s.replace(new RegExp(/[^\d]/g),''));

To fix it, just use the regex literal directly like so:

s.replace(/[^\d]/g,''));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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