After reading some tutorials I still don't get it.
Could someone explain how ?: is used and what it's good for?
|
After reading some tutorials I still don't get it. Could someone explain how |
||||
|
|
|
Let me try to explain this with an example... Consider the following text:
Now, if I apply the regex below over it...
... I would get the following result:
But I don't care about the protocol -- I just want the host and path of the URL. So, I change the regex to include the non-capturing group
Now, my result looks like this:
See? The first group has not been captured. The parser uses it to match the text, but ignores it later, in the final result. Hope it helps. Sorry for my lousy english. EDIT:As requested, let me try to explain groups too. Well, groups serve many purposes. They can help you to extract exact information from a bigger match (which can also be named), they let you rematch a previous matched group, and can be used for substitutions. Let's try some examples, shall we? Ok, imagine you have some kind of XML or HTML (be aware that regex may not be the best tool for the job, but it is nice as an example). You want to parse the tags, so you could you something like this (I have added spaces to make it easier to understand):
The first regex has a named group (TAG), while the second one uses a common group. Both regexes do the same thing: they use the value from the first group (the name of the tag) to match the closing that. The difference is that the first one uses the name to use the value, and the second one uses the group index (which starts at 1). Let's try some substitutions now. Consider the following text:
Now, let's use the this dumb regex over it:
This regex matches words with at least 3 characters, and uses groups to separate the first three letters. The result is this:
So, if we apply the substitution string...
... over it, we are trying to use the first group, add an underscore, use the third group, then the second group, add another underscore, and then the fourth group. The resulting string would be like the one below.
You can use named groups for substitutions too, using ${name}. To play around with regexes, I recommend Rad Software Regular Expression Designer, which has a nice "Language Elements" tab with quick access to some basic instructions. It's based at .NET's regex engine. Hope I've helped. |
|||||||||||||
|
|
You can use capturing groups to organize and parse an expression. A non-capturing group has the first benefit, but doesn't have the overhead of the second. You can still say a non-capturing group is optional, for example. Say you want to match numeric text, but some numbers could be written as 1st, 2nd, 3rd, 4th,... If you want to capture the numeric part, but not the (optional) suffix you can use a non-capturing group.
That will match numbers in the form 1, 2, 3... or in the form 1st, 2nd, 3rd,... but it will only capture the numeric part. |
||||
|
An example would be something to match an IP address:
Note that I don't care about saving the first 3 octets, but the |
|||||
|
|
It makes the group non-capturing, which means that the substring matched by that group will not be included in the list of captures. An example in ruby to illustrate the difference:
|
|||
|
|
|
Groups that capture you can use later on in the regex to match OR you can use them in the replacement part of the regex. Making a non-capturing group simply exempts that group from being used for either of these reasons. Non-capturing groups are great if you are trying to capture many different things and there are some groups you don't want to capture. Thats pretty much the reason they exist. While you are learning about groups, learn about Atomic Groups, they do a lot! There is also lookaround groups but they are a little more complex and not used so much. Example of using later on in the regex (backreference):
Later on in the regex is |
|||||
|