Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: "While" effect on regex?

by Anonymous Monk
on Feb 17, 2013 at 08:10 UTC ( [id://1019117]=note: print w/replies, xml ) Need Help??


in reply to Re: "While" effect on regex?
in thread "While" effect on regex?

why is the second while loop needed ?
while(<>) { while( m/\b (\w\S+) ....
and not just ?
while(<>) { if ( m/\b (\w\S+) ...

Replies are listed 'Best First'.
Re^3: "While" effect on regex?
by CountZero (Bishop) on Feb 17, 2013 at 16:24 UTC
    The first while loop reads in the data to be matched. The second while loop goes through all the matches (if the g modifier is added).

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

    My blog: Imperial Deltronics
      you mean that the while loop executes for each match of /g?
      so if /g matches 2 times then the while block will be executed twice?
        so if /g matches 2 times then the while block will be executed twice?
        Indeed, the second loop will be executed once for each match.

        CountZero

        A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

        My blog: Imperial Deltronics

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (7)
As of 2024-04-23 12:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found