Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: loop execution

by jeroenes (Priest)
on Oct 25, 2001 at 01:14 UTC ( [id://121274]=note: print w/replies, xml ) Need Help??


in reply to loop execution

A quick try:
my $string = join \000, @code; $string =~ s!("\w+")!<b>$1</b>!g; @newcode = split /\000/, $string;
See perlre. The regex should be executed each time in the loop BTW. Are you sure that not all the text is in one item for some reason? Try the g modifier after your regex, see if that cures it.

I also changed the regex a bit. See 7 Stages of Regex Users and Death to Dot Star!. Depending on the complexity of your input, you might be better of with Parse::RecDescent or siblings.

Jeroen
"We are not alone"(FZ)

Replies are listed 'Best First'.
Re: Re: loop execution
by staeryatz (Monk) on Oct 25, 2001 at 08:26 UTC
    Yes the g cured it. I've looked over some of the regex things you've directed me to. Thanks. It was a good read...the learning exepeience kinda lost me in the middle, but now I know how powerful regex's in perl can be.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-19 19:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found