Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand that .match() returns an array of the matches, or null if none are found. But how do I go about accessing the values of capturing groups used with .match?

For example:

var val = whatever.match('(?:^|;) ?' + stuff + '=([^;]*)(?:;|$)');

Assuming the regular expression matches more than once, how do I access the value of the capturing group in a particular match?

Thanks!!

share|improve this question

1 Answer

up vote 4 down vote accepted

Use array notation: [0], [1], etc.

var val = whatever.match('(?:^|;) ?' + stuff + '=([^;]*)(?:;|$)');
if(val != null) {
    var first = val[0];
    //...
}
share|improve this answer
1  
Right, but if the regex matches more than one item, val itself is already an array right? So then val[0] would just return the first match. – Alex Jul 12 '10 at 18:46
1  
Correct. If the returned value from match is non-null, it is an array. – Jacob Relkin Jul 12 '10 at 19:05
1  
your guys' dialogue cleared up just what was confusing me just now. Thanks. – govinda Aug 19 '12 at 2:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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