Help for this page

Select Code to Download


  1. or download this
        for( $thingy{foo()}{bar()} ) {
            s/^\s+//;
            s/\s+(#.*)?$//;
            tr/A-Z/a-z/;
        }
    
  2. or download this
        $thingy{foo()}{bar()} =~ s/^\s+//;
        $thingy{foo()}{bar()} =~ s/\s+(#.*)?$//;
        $thingy{foo()}{bar()} =~ tr/A-Z/a-z/;