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

Re: CHOMP VS. CHOP

by atl (Pilgrim)
on Aug 02, 2000 at 12:58 UTC ( [id://25685]=note: print w/replies, xml ) Need Help??


in reply to CHOMP VS. CHOP

Welcome to the world of cross platform programming! :-)

I don't know if there is a elegant solution to this, but since chop will always take away the last character I don't like it very much. I'd suggest to do something along this:

# ... read into $line chomp $line; $line =~ s/\r$//; # ... carry on

That should work for any win-unix-combo (client as well as server; code is untestet, though, and might contain some lurking errors ;) )

Cheers ...

Andreas

Update: Think before submitting ... the line about "any win-unix-combo" is BS, I'm sorry. This will work if your client (executing this script) is unix and the server (where you read from) is win or unix.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (3)
As of 2024-04-24 02:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found