Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Storing Substitution Output String

by little (Curate)
on Jul 14, 2002 at 17:46 UTC ( [id://181607]=note: print w/replies, xml ) Need Help??


in reply to Storing Substitution Output String

So you better use $1 as thats the match you where looking for then a string that you unneccesarily altered, so use a match

$page2 =~ m|<title>(.*)</title>|gi; print $1;
instead. And you might consider not to use dotStar, see Ovid's Death to Dot Star!:-)

Have a nice day
All decision is left to your taste

Update

so alike this?
print '<li>'.$1.'</li>';

Replies are listed 'Best First'.
Re: Re: Storing Substitution Output String
by bob (Novice) on Jul 14, 2002 at 18:53 UTC
    The string is altered on purpose--that's the whole point, in this case, of the expression.
Re: Re: Storing Substitution Output String
by bob (Novice) on Jul 14, 2002 at 19:08 UTC
    Ahhhh.... your update has me thinking... Let me try to fir it like that and see if it'll work. As mentioned above, the sub is really somewhat more complex than drawn in my first post....
      Printing the scalars (and adding the add'l text and tags at that point) allows me to print only the first instance of each match, Little. How would you suggest printing all of the matches made?

        say your text is in a string (or an array of strings) then I would use grep and map :-) to get a list of all matches nicely formatted as list items, but for sure there is an easier way which refuses to come to my mind now :-)

        perhaps this might do :-)

        # the substitution is none in effect, it just digs around $page2 =~ s|<title>(.*)</title>|${my_count(\$1)}|gi; my matches = (); sub my_count { my $occurance = shift; push @matches, ${$occurance} ; return $occurance; } # see what we've got foreach (@matches) { print '<li>'.$_.'</li>'."\n"; # just to format the output :-) }

        Have a nice day
        All decision is left to your taste

        Update

        fixed stupid error in the substitutional part where I inserted the '<title>' again.

        You see there might be a dozen matching patterns in each document, Little. And I want to print all of the matches with the additional text added.
        I may be missing replies..... Never used this board before, and now I see replies that aren't showing up in the thread.... Ok, fixed my thread depth.... I'm taking a look at your latest suggestion now, Little.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-03-19 06:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found