Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: how to extract string by possible groupings?

by LanX (Saint)
on Jun 02, 2014 at 23:22 UTC ( [id://1088318]=note: print w/replies, xml ) Need Help??


in reply to Re^2: how to extract string by possible groupings?
in thread how to extract string by possible groupings?

See OP

The question was for a match in list context

(@match) = ( $_ =~ /.../g )

which returns the matches as a list into an array.

i.e. $match[0]=$1 ( see perlop ¹ )

I didn't want to confuse with more details than necessary...

Cheers Rolf

(addicted to the Perl Programming Language)

update

well actually the /g modifier isn't necessary and might produce too many matches...

DB<110> @matches = ('abcd' =~ /(.)(.)/) => ("a", "b") DB<111> @matches = ('abcd' =~ /(.)(.)/g) => ("a", "b", "c", "d") DB<112> $matches[0] => "a"

¹) perlop#Regexp-Quote-Like-Operators

* Matching in list context

If the "/g" option is not used, "m//" in list context returns a list consisting of the subexpressions matched by the parentheses in the pattern, i.e., ($1, $2, $3...).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-23 22:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found