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

I am exploring capturing groups in Regex and I am getting confused about lack of documentation on it. For ex, can anyone tell me difference between two regex:

/(?:madhur)?/

and

/(madhur)?/

As per me, ? in second suggests matching madhur zero or once in the string.

How is the first different from second ?

share|improve this question

3 Answers

up vote 7 down vote accepted

The first one won't store the capturing group, e.g. $1 will be empty. The ?: prefix makes it a non capturing group. This is usually done for better performance and un-cluttering of back references.

In the second example, the characters in the capturing group will be stored in the backreference $1.

Further Reading.

share|improve this answer

It doesn't affect the matching at all.

It tells the regex engine

  • not to store the group contents for use (as $1, $2, ...) by the replace() method
  • not to return it in the return array of the exec() method and
  • not to count it as a backreference (\1, \2, etc.)
share|improve this answer
One minor nit: It will change the matching in some cases. E.g. in /(foo)\1/ will match "foofoo", but /(?:foo)\1/ will not. The \1 is interpreted as a back-reference in the first, and as an octal escape sequence in the second. – Mike Samuel Jun 21 '11 at 0:27

Here's the most obvious example:

"madhur".replace(/(madhur)?/, "$1 ahuja");   // returns "madhur ahuja"
"madhur".replace(/(?:madhur)?/, "$1 ahuja"); // returns "$1 ahuja"

Backreferences are stored in order such that the first match can be recalled with $1, the second with $2, etc. If you capture a match (i.e. (...) instead of (?:...)), you can use these, and if you don't then there's nothing special. As another example, consider the following:

/(mad)hur/.exec("madhur");   // returns an array ["madhur", "mad"]
/(?:mad)hur/.exec("madhur"); // returns an array ["madhur"]
share|improve this answer
Thanks for the nice examples – Madhur Ahuja Jun 21 '11 at 2:31

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.