Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
        I don't want this text
        to be unindented.
    END
    
  2. or download this
    sub unindent
    {
    ...
        $data =~ s/^$whitespace//mg;
        $data;
    }