Help for this page

Select Code to Download


  1. or download this
    my $string = 'Hello, World';
    chop $string;
    print $string;
    
  2. or download this
    Hello, Worl
    
  3. or download this
    my $string = 'Hello, World';
    remove_caps $string;
    print $string;
    
  4. or download this
    ello, orld