chomp VARIABLE ... chomp( LIST ) ... Perl Buzz...
perldoc.perl.org/functions/chomp.html perldoc.perl.org/functions/chomp.html
The chomp() function will remove (usually) any newline character from the end of a string. The reason we say usually is that it actually removes any character that matches the current value of $/ (the input record separator), and $/ defaults to a newline.
perlmeme.org/howtos/perlfunc/chomp_function.html perlmeme.org/howtos/perlfunc/chomp_function.html
Chomp is a "built-in" Perl command. It has a rather odd job. It takes off the end character of a specified string ONLY if that character is a RETURN (Enter). The return character is sometimes created from input information or by the coding itself.
www.htmlite.com/perl010.php www.htmlite.com/perl010.php
A tutorial on the Perl chomp() function with some examples of how to use it. ... We can remove the line break rather easily with the chomp() function. This function simply removes any erroneous line breaks and spacing from the end of our string.
www.tizag.com/perlT/perlchomp.php www.tizag.com/perlT/perlchomp.php
Learn through examples how to use Perl chomp function for strings, arrays and hashes ... Perl chomp Menu:; 1. The syntax forms; 1.1. chomp VARIABLE; 1.2. chomp (LIST); 1.3. chomp; 2. chomp function – How To Tutorial eBook;
www.misc-perl-info.com/perl-chomp.html www.misc-perl-info.com/perl-chomp.html
[Solved] Weirdness with Perl's chop() and chomp() Userland Programming & Scripting ... Yeah, you're using them wrong. It's chop $test3 and chomp $test1 there's no need for the assignment. The assignment actually assigns the chopped off character. ... The standard perl functions can all be found in the perlfunc man page.
forums.freebsd.org/showthread.php?p=34561
Perl's chop and chomp functions can often be a source of confusion. Not only do they sound similar, they do similar things. Unfortunately, there is a critical difference - chop removes the last character of the string completely, while chomp only removes the last character if it is a newline.
perl.about.com/od/programmingperl/qt/perl_chomp_chop.ht... perl.about.com/od/programmingperl/qt/perl_chomp_chop.htm
chomp VARIABLE ... chomp( LIST ) ... Perl Doc. Index...
www.icewalkers.com/Perl/5.8.0/pod/func/chomp.html www.icewalkers.com/Perl/5.8.0/pod/func/chomp.html
Tips: Browse or Search all pages for efficient awareness of Perl functions, operators, and FAQs. ... Rapid-Links: Search | About | Comments | Submit Path: RocketAware > Perl > perlfunc/chomp.htm...
www.rocketaware.com/perl/perlfunc/chomp.htm www.rocketaware.com/perl/perlfunc/chomp.htm
An introduction to some string functions in Perl. ... The chomp function will remove the last character of a string, but only if that character is an input record separator (the current value of $/ in Perl), which defaults to the newline (\n) character. This is often used to remove the \n character when reading from a file.
www.pageresource.com/cgirec/ptut13.htm