Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Re: Re: Re: Re: pattern matching on a single line

by merlyn (Sage)
on Jun 06, 2001 at 00:33 UTC ( [id://85999]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Re: pattern matching on a single line
in thread How do I store all matches from a single line?

Uh, hello? I just ran this code:
@lines = <DATA>; @result = map /<.*?>/g, @lines; result(1); ### rest deleted ### sub result { print"\nResults",pop,"\n"; print "$_\n" for @result; @result = (); } __DATA__ aa<aa@aa.com>bb<bb@bb.com>cc<cc@cc.com> dd<dd@dd.dd>ee<ee@ee.com>ff<ff@ff.com>
and it produced this result, which appears perfectly fine:
Results1 <aa@aa.com> <bb@bb.com> <cc@cc.com> <dd@dd.dd> <ee@ee.com> <ff@ff.com> ### rest deleted
What part of Sadly your example fails to produce the desired result :-( am I failing to understand?

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: pattern matching on a single line
by Vynce (Friar) on Jun 06, 2001 at 02:23 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (1)
As of 2024-04-24 23:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found