Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^3: brackets matching problem

by Dietz (Curate)
on Aug 19, 2004 at 09:11 UTC ( [id://384219]=note: print w/replies, xml ) Need Help??


in reply to Re^2: brackets matching problem
in thread brackets matching problem

Out of perldoc perlre:
Alternatives are tried from left to right, so the first alternative found for which the entire expression matches, is the one that is chosen. This means that alternatives are not necessarily greedy. For example: when matching "foo|foot" against "barefoot", only the "foo" part will match, as that is the first alternative tried, and it successfully matches the target string. (This might not seem important, but it is important when you are capturing matched text using parentheses.)

Let's look at a simply modified test sample:
/(1|12)(3?)/
will match 1 because 3 ist optional

and
/(1|12)(3?)$/ # use anchor to force the engine to match the entire ex +pression
will match 12 because it has to satisfy the entire expression and so it will match 3 at the end of the string

Add:
For clarifying, the first example will have '1' in $1 and nothing in $2
Second example will have '12' in $1 and '3' in $2

Replies are listed 'Best First'.
Re^4: brackets matching problem
by lucky8 (Initiate) on Aug 19, 2004 at 10:07 UTC
    Thank you, now it's clear

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://384219]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2025-03-26 08:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    When you first encountered Perl, which feature amazed you the most?










    Results (67 votes). Check out past polls.

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.