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

Re^2: Record Separator affecting Regex

by tadman (Prior)
on Nov 07, 2002 at 19:56 UTC ( [id://211207]=note: print w/replies, xml ) Need Help??


in reply to Re: Record Separator affecting Regex
in thread Record Separator affecting Regex

As a note, there's a way to check for "lines which are composed only of spaces" that I find much more succinct:
print "Query: $line" if ($line =~ /\S/);
Or more generically:
next unless ($line =~ /\S/); print "Query: $line";
"Not composed entirely of spaces" is equivalent to "contains a non-space character", at least in this context.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://211207]
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: (4)
As of 2024-04-19 21:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found