Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: multiple matches per line *AND* multiple capture groups per match

by Special_K (Monk)
on Dec 22, 2013 at 01:43 UTC ( [id://1068077]=note: print w/replies, xml ) Need Help??


in reply to Re: multiple matches per line *AND* multiple capture groups per match
in thread multiple matches per line *AND* multiple capture groups per match

Wow, I didn't even know you could change the beginning and ending delimiter of a regexp. Is that only if you use the qr function, or can you change the delimiter in any context?
  • Comment on Re^2: multiple matches per line *AND* multiple capture groups per match

Replies are listed 'Best First'.
Re^3: multiple matches per line *AND* multiple capture groups per match (delimiters)
by kcott (Archbishop) on Dec 22, 2013 at 05:57 UTC
Re^3: multiple matches per line *AND* multiple capture groups per match
by Laurent_R (Canon) on Dec 22, 2013 at 10:28 UTC
    You can do that with the quote and quote-like operators, but also, for regexes, with the m// and the s/// operators, which can be written, for example, m{...} and s[...]{...} or even m#...#, etc, as shown in the following Perl one-liners:
    $ perl -e 'print $1 if "foobar" =~ m{f(oo)ba}' oo $ perl -e 'print $1 if "foobar" =~ m#f(oo)ba#' oo
    Update: well, thinking again about what I wrote above, m// and s/// are in fact part of the quote and quote-like operators (so Ken's answer said it all), but I just wanted to point out that this can be done in direct regex constructs.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (4)
As of 2024-04-24 19:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found