Help for this page

Select Code to Download


  1. or download this
    my $str = $change_in_place && $default_argument ? $_ : $_[0];
      $str =~ s/^($lchompstr)*//;
      $_[0];
    }
    
  2. or download this
      (my $str = $change_in_place && $default_argument ? $_ : $_[0]) =~ s/
    +^($lchompstr)*//;
      $_[0];
    }
    
  3. or download this
    .
    .
    ...
      }
      $_[0];
    }