Beefy Boxes and Bandwidth Generously Provided by pair Networks Ovid
Think about Loose Coupling
 
PerlMonks  

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

by tachyon (Chancellor)
on Jun 05, 2001 at 20:22 UTC ( [id://85997]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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

Sadly your example fails to produce the desired result :-( Here are a few different ways to write it, all do the same as Randal's example, which we start with.

tachyon

@lines = <DATA>; @result = map /<.*?>/g, @lines; result(1); for (@lines) { @result = /<(.*?)>/g; } result(2); for (@lines){ @match = /<(.*?)>/g; push @result, @match; } result(3); for (@lines){ push @result,$1 while /<(.*?)>/g; } result(4); @result = map{/<.*?>/g}@lines; result(5); 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>

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: pattern matching on a single line
by merlyn (Sage) on Jun 05, 2001 at 20:33 UTC
    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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://85997]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.