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
|
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
| |||||||
feedback
|
|
The key difference between 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:
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
This says, "look for the word car or cars; if you find either, return 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
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 Personally, I find myself using See it in CodeHere's the above implemented in Clojure as an example:
The item | |||||||||||
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) quantifierThe usefulness of the ? is easy enough to understand: Say you want to match either
This will match both versions, because it makes the ?? - Optional (lazy) quantifierThe ?? 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:
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:
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 To avoid this, you make one slight change:
This way, the engine will always check to see if the pattern matches without the s (just as if you had written | |||||||||||
feedback
|
|
matches "color" and "colour"
matches "a pool" and "the swimming pool"
| |||||||||||
feedback
|