<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META content="text/html; charset=us-ascii" http-equiv=Content-Type>
<STYLE type=text/css>DIV {
        MARGIN: 0px
}
</STYLE>

<META name=GENERATOR content="MSHTML 8.00.6001.18999"></HEAD>
<BODY>
<DIV dir=ltr align=left><SPAN class=390145420-04022011><FONT color=#0000ff 
size=2 face=Arial>line ends in windows tend to be \r\n.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=390145420-04022011><FONT color=#0000ff 
size=2 face=Arial>comp safely removes one line end character, as aposed to chop 
that removed one cjharacter from the end of a line.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=390145420-04022011><FONT color=#0000ff 
size=2 face=Arial>so chomp$_; chomp $_; is safe and will work on any computer 
OS.</FONT></SPAN></DIV>
<DIV dir=ltr align=left><SPAN class=390145420-04022011><FONT color=#0000ff 
size=2 face=Arial></FONT></SPAN>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><FONT color=#0000ff size=2 face=Arial></FONT>&nbsp;</DIV>
<DIV><BR></DIV>
<DIV dir=ltr lang=en-us class=OutlookMessageHeader align=left>
<HR tabIndex=-1>
<FONT size=2 face=Tahoma><B>From:</B> 
toronto-pm-bounces+mfowle=navicominc.com@pm.org 
[mailto:toronto-pm-bounces+mfowle=navicominc.com@pm.org] <B>On Behalf Of 
</B>Omid Gulban<BR><B>Sent:</B> Friday, February 04, 2011 3:42 PM<BR><B>To:</B> 
tpm@to.pm.org<BR><B>Subject:</B> [tpm] chomp problem<BR></FONT><BR></DIV>
<DIV></DIV>
<DIV style="FONT-FAMILY: times new roman,new york,times,serif; FONT-SIZE: 12pt">
<DIV><FONT size=+0><FONT size=2>Hello All,<BR><BR>I have a simple script shown 
below:<BR>on windows xp platform.<BR><BR><BR><BR>use warnings;<BR>use 
strict;<BR><BR>while (&lt;DATA&gt;) 
{<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; chomp 
$_;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; print 
"$_";<BR>}<BR><BR>__END__<BR>a<BR>b<BR>c<BR>d<BR>e<BR>f<BR>g<BR>h<BR><BR><BR>Why 
do I get an output that looks like 
this:<BR>a<BR>ab<BR>bc<BR>cd<BR>de<BR>ef<BR>fg<BR>ghh<BR><BR>I expected to 
see:<BR>abcdefg<BR><BR><BR>Thanks<BR>O<BR></FONT></FONT></DIV></DIV><BR></BODY></HTML>