Help for this page

Select Code to Download


  1. or download this
        $line =~ s/^\s+//; # ltrim()
        $line =~ s/\s+$//; # rtrim()
    
  2. or download this
    ltrim($line,7);
    # and
    $line2 = ltrim($line,7);