Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Re: How to find empty in empty

by petral (Curate)
on Nov 19, 2002 at 15:44 UTC ( [id://214155]=note: print w/replies, xml ) Need Help??


in reply to Re: How to find empty in empty
in thread How to find empty in empty

Um, '+' means at least one (and you don't need the box): ! /^\s*$/ Anyway, it's even easier just to check for a non-space: /\S/ But, as long as we're at it, why not accept only well-formed lines:
if ( /^(\w+)\s+([\d.]+)/ ) { ($names[$l],$versions[$l])=($1,$2); ++$l; else { . . .

  p

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-18 09:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found