You're viewing a comment by Dave Cross and its responses.
You're viewing a comment by Dave Cross and its responses.
I am being sponsored by Syntress since 2007! They bought me an amazing dedicated server to run catonmat on. If you're looking web services in Chicago area, I highly recommend the Syntress guys!
I love to read science books. They make my day and I get ideas for awesome blog posts, such as Busy Beaver, On Functors, Recursive Regular Expressions and many others.
Take a look at my
Amazon wish list, if you're curious about what I have planned reading next, and want to surprise me. :)


The whole area of line endings is a lot more complex than this article implies. The \n character represents whatever is the end-of-line character on your current system. Therefore when running on Windows, \n actually represents a sequence of two characters - a carriage return character (x0D) followed by a line feed character (x0A).
For this reason, best practice is to use real character codes rather than escape characters. I recommend:
s/\015\012/\012/ # Windows -> Unix
s/\012/\015\012/ # Unix -> Windows
See the section on newlines in "perldoc perlport" for more details.
Reply To This Comment