I'm not a JS guru, but could someone help me find the invalid quantifier error in the following snippet?

THANKS IN ADVANCE! -mprototype

function $_GET(q,s) {
        s = s ? s : window.location.search;
        var re = new RegExp( '&' + q + '(?:=([^&]*))?(?=&|$)' , 'i' );
        return (s=s.replace(/^?/,'&').match(re)) ? (typeof s[1] == 'undefined' ? '' : decodeURIComponent(s[1])) : undefined;
    } 
link|improve this question

80% accept rate
What is this supposed to do: /^?/ ? It gives me SyntaxError: Invalid regular expression: /^?/: Nothing to repeat. And maybe you can also explain what the function is supposed to do. – Felix Kling Apr 12 '11 at 16:46
1  
You need to escape the ?, or strip it from the search string-s = s || window.location.search.substring(1); – kennebec Apr 12 '11 at 16:50
The function is supposed to be used like var var1 = $_GET('key') to use a get var in the javascript – mprototype Apr 12 '11 at 17:48
The funny thing is the function is actually working for using get vars by key identifiers, but I don't like having an error on the page. – mprototype Apr 12 '11 at 17:51
feedback

1 Answer

up vote 1 down vote accepted

? has a special meaning in Regular Expressions, specifically it makes the preceding item optional. If you are trying to find the question mark character itself you need to escape it with a backslash.

function $_GET(q,s) {
        s = s ? s : window.location.search;
        var re = new RegExp( '&' + q + '(?:=([^&]*))?(?=&|$)' , 'i' );
        return (s=s.replace(/^\?/,'&').match(re)) ? (typeof s[1] == 'undefined' ? '' : decodeURIComponent(s[1])) : undefined;
    } 
link|improve this answer
I'll give that a try, thanks for input! – mprototype Apr 12 '11 at 17:53
success, you're the man – mprototype Apr 12 '11 at 18:54
feedback

Your Answer

 
or
required, but never shown

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