Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: problem with array

by ChOas (Curate)
on Aug 20, 2008 at 06:29 UTC ( [id://705425]=note: print w/replies, xml ) Need Help??


in reply to problem with array

Personally I'm pretty fond of modifying the input record seperator:
local $/="</end>\n"; my @group = map {[/<ref id="([^"]+)">/g]} <DATA>; print "New Group: @$_\n" for @group; __END__ <ref id="ref1"> <ref id="ref2"> <ref id="ref3"> </end> <ref id="ref4"> <ref id="ref5"> </end> <ref id="ref6"> <ref id="ref7"> <ref id="ref8"> </end>

Outputs:
New Group: ref1 ref2 ref3
New Group: ref4 ref5
New Group: ref6 ref7 ref8

(edit: Ah, so is GrandFather, read right past his response, 'ooops')

GreetZ!,
    ChOas

print "profeth still\n" if /bird|devil/;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-16 04:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found