Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

chop() and chomp()

by Parham (Friar)
on Jan 01, 2002 at 04:23 UTC ( [id://135462]=perltutorial: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #chomp() EXAMPLES
    $a = "abcdefghij";
    ...
    $a = "abcdefghij";
    $b = chop($a);
    print $b;  #this would return 'j'
    
  2. or download this
    $a = "abcdefghij\n";
    if ($a =~ /\n$/) { chop $a; } #this could also be \r\n if on windows p
    +latform
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perltutorial [id://135462]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-18 00:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found