Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Re: while loop over filehandle

by diotalevi (Canon)
on Sep 23, 2002 at 13:50 UTC ( [id://200093]=note: print w/replies, xml ) Need Help??


in reply to Re: while loop over filehandle
in thread while loop over filehandle

Just an additional note on that - while your regex is better written as chomp($user) you can make an improvement by using a character class instead of alternation:

You wrote $user =~ s/(\r|\n)//.

You *meant* $user =~ s/(\r|\n)$// since that newline should only occur at the end of the string.

That group is capturing but it doesn't need to $user =~ s/(?:\r|\n)$//. Don't use capturing where it's not needed.

In fact - grouping is wasteful for single character alternation. Use a character class instead $user =~ s/[\r\n]$//.

And even better use chomp() chomp($user).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (None)
    As of 2024-04-19 00:02 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found