I'm reading the regular expressions reference and I'm thinking about ? and ?? characters. Could you explain me with some examples their usefulness? I don't understand them enough.

thank you

link|improve this question

1  
What is your target programming language for using regexes? Regexes behave a little differently across languages. – semperos Apr 7 '11 at 15:37
I used regex in python, C#, php, perl, visual basic, grep. – xralf Apr 7 '11 at 17:41
feedback

3 Answers

up vote 3 down vote accepted

The key difference between ? and ?? concerns their laziness. ?? is lazy, ? is not.

Let's say you want to search for the word "car" in a body of text, but you don't want to be restricted to just the singular "car"; you also want to match against the plural "cars".

Here's an example sentence:

I own three cars.

Now, if I wanted to match the word "car" and I only wanted to get the string "car" in return, I would use the lazy ?? like so:

cars??

This says, "look for the word car or cars; if you find either, return car and nothing more".

Now, if I wanted to match against the same words ("car" or "cars") and I wanted to get the whole match in return, I'd use the non-lazy ? like so:

cars?

This says, "look for the word car or cars, and return either car or cars, whatever you find".

In the world of computer programming, lazy generally means "evaluating only as much as is needed". So the lazy ?? only returns as much as is needed to make a match; since the "s" in "cars" is optional, don't return it. On the flip side, non-lazy (sometimes called greedy) operations evaluate as much as possible, hence the ? returns all of the match, including the optional "s".

Personally, I find myself using ? as a way of making other regular expression operators lazy (like the * and + operators) more often than I use it for simple character optionality, but YMMV.

See it in Code

Here's the above implemented in Clojure as an example:

(re-find #"cars??" "I own three cars.")
;=> "car"

(re-find #"cars?" "I own three cars.")
;=> "cars"

The item re-find is a function that takes its first argument as a regular expression #"cars??" and returns the first match it finds in the second argument "I own three cars."

link|improve this answer
Your cars?? example is correct, but it returns the same results as if you had simply used car. You might need a different example to demonstrate the usefulness of ??. – Justin Morgan Apr 7 '11 at 16:27
@Justin, true, but yours has the same problem. – Matthew Flaschen Apr 7 '11 at 17:16
Thank you, this answer is very practical. – xralf Apr 7 '11 at 18:07
@xralf I'm glad it was helpful, thanks for marking it as correct. – semperos Apr 7 '11 at 18:42
@Matthew Flaschen - The third input string in my answer produces identical results when you leave out the s??, but the others do not. That's how it differs from leaving the optional element out of the pattern: by making the same pattern work for all three input strings. – Justin Morgan Apr 7 '11 at 19:00
feedback

This is an excellent question, and it took me a while to see the point of the lazy ?? quantifier when I was first learning.

? - Optional (greedy) quantifier

The usefulness of the ? is easy enough to understand: Say you want to match either http:// or https:// You can do that easily with a regex like this:

https?://

This will match both versions, because it makes the s optional.

?? - Optional (lazy) quantifier

The ?? is a little more subtle. You don't see it used much, but it has a function in specific situations. For one example of its usefulness, say you have a set of inputs like this:

http123
https456
httpsomethingsomething

You want to separate that into capture groups. Specifically, you want to capture 123, 456, and somethingsomething in one capture group. You can use a pattern like:

https?([a-z]+|\d+)$

This works for the first two. However, the greedy ? will always try to match an s after the http, so the last input will match https and then capture omethingsomething. Your capture has lost its initial s, because https? has sucked it up.

To avoid this, you make one slight change:

https??([a-z]+|\d+)$

This way, the engine will always check to see if the pattern matches without the s (just as if you had written http([a-z]+|\d+)$). Only when that fails will the engine check the https([a-z]+|\d+)$ version.

link|improve this answer
Excellent answer - I didn't know about the lazy versions before, but I can see their usefulness. – Lars Apr 7 '11 at 16:00
In all your cases, https??([a-z]+|\d+) and http([a-z]+|\d+) (no s before capture at all) give the same matches and captures. So I don't see how this is a meaningful example. – Matthew Flaschen Apr 7 '11 at 17:12
Your answer is excellent too. Actually I had problem only with ?? :-) and was looking what is different in opposite to ? . – xralf Apr 7 '11 at 17:53
@Matthew http([a-z]+|\d+) won't match https(456). That's the difference. – xralf Apr 7 '11 at 17:58
@xralf, no. They both match with exactly the same match and capture: With ??, Without. – Matthew Flaschen Apr 7 '11 at 18:02
show 5 more comments
feedback

? simply makes the previous item (character, character class, group) optional:

colou?r

matches "color" and "colour"

(swimming )?pool

matches "a pool" and "the swimming pool"

?? is the same, but it's also lazy, so the item will be excluded if at all possible. As those docs note, ?? is rare in practice. I have never used it.

link|improve this answer
That is written in the reference too. – xralf Apr 7 '11 at 15:30
@xralf, is there anything that is still unclear after the docs and my examples? – Matthew Flaschen Apr 7 '11 at 15:31
@Matthew: You just reworded the reference doc, without explaining it. In particular the inclusion/exclusion from a match is a puzzling concept. – Lars Apr 7 '11 at 15:34
@Lars, sorry? I did explain with examples. – Matthew Flaschen Apr 7 '11 at 15:47
@Matthew My comment may have crossed your edit; but see the other answers for good explanations of lazy vs. greedy. – Lars Apr 7 '11 at 15:55
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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