Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Chomp doesn't work

by davido (Cardinal)
on Mar 25, 2013 at 09:04 UTC ( [id://1025259]=note: print w/replies, xml ) Need Help??


in reply to Chomp doesn't work

chomp strips from its parameter list the contents of $/, which is typically "\n". However, there are at least five Unicode code points that produce a newline (see perluniprops) Also, "\n" means different things on different machines; a file saved on a Windows system will have a different version of "\n" than a file saved on a Unix/Linux system. This could be getting in your way too.


Dave

Replies are listed 'Best First'.
Re^2: Chomp doesn't work
by M15U (Acolyte) on Mar 25, 2013 at 09:22 UTC

    I got it. It's a little embarasing : each end of line has"\r\n" at the end. So by using this replace statement it works :

    $start_input =~ s/\r\n//d;

    So, if you ever get something similar, think about the "\r" before the "\n".

      Just use \R instead!
      $start_input =~ s/\r\n//d;

      /d is not a valid option for s///.    Perhaps you meant tr/\r\n//d?

        /d was added in 5.14.
        لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-19 03:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found