in reply to Re: strange character with HTTP::Request GET
in thread strange character with HTTP::Request GET

I'm sorry, this is as simple as using chomp instead of chop isn't it? Sorry for being brain dead tonight and thank you for your help!
  • Comment on Re^2: strange character with HTTP::Request GET

Replies are listed 'Best First'.
Re^3: strange character with HTTP::Request GET
by ikegami (Patriarch) on May 01, 2008 at 05:39 UTC
    $\ is set to LF, even on Windows, so you'd need to change it to "\x0D\x0A" for chomp to work here.