Difference between chomp and chop : chop chomp « String « Perl

Home
Perl
1.Array
2.CGI
3.Class
4.Data Type
5.Database
6.File
7.GUI
8.Hash
9.Language Basics
10.Network
11.Regular Expression
12.Report
13.Statement
14.String
15.Subroutine
16.System Functions
17.Win32
18.XML
Perl » String » chop chomp 




Difference between chomp and chop
   

#!C:/perl/bin

$/ = "\n";
$stringvalue = "This is a string \n";
chomp $stringvalue;
print "The string that had a newline character becomes: $stringvalue";
print " and this is a following string\n\n";

$stringvalue = "This is a string";       # note no \n in the string
chomp $stringvalue;
print "The string that had NO newline character becomes: $stringvalue";
print " and this is a following string\n\n";

   
    
    
  














Related examples in the same category
1.Type four characters with chomp
2.Type four characters without chomp
3.chomp in a while statement
4.chomp matches the input line separator defined by the $/ system variable.
5.chop function deletes the character at the right end of the line of text
6.The chomp function is a safer version of chop
7.The chop function removes the last character in a scalar variable
8.Chomp the pre-set character
9.Chomp: Last character removed only if a newline
10.Chop function in action
11.Chop: Removing the last character, regardless of what it is
12.Cleaning Up Typed Input
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.