chomp() cares about Unicode
authorSADAHIRO Tomoyuki <BQW10602@nifty.com>
Sat, 7 Feb 2004 00:08:36 +0000 (09:08 +0900)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Sun, 8 Feb 2004 11:42:08 +0000 (11:42 +0000)
Message-Id: <20040206235116.0E36.BQW10602@nifty.com>

p4raw-id: //depot/perl@22284

pod/perlunicode.pod

index b05edab..7de87ac 100644 (file)
@@ -559,10 +559,10 @@ that make the distinction.
 
 Most operators that deal with positions or lengths in a string will
 automatically switch to using character positions, including
-C<chop()>, C<substr()>, C<pos()>, C<index()>, C<rindex()>,
+C<chop()>, C<chomp()>, C<substr()>, C<pos()>, C<index()>, C<rindex()>,
 C<sprintf()>, C<write()>, and C<length()>.  Operators that
 specifically do not switch include C<vec()>, C<pack()>, and
-C<unpack()>.  Operators that really don't care include C<chomp()>,
+C<unpack()>.  Operators that really don't care include
 operators that treats strings as a bucket of bits such as C<sort()>,
 and operators dealing with filenames.