Help for this page

Select Code to Download


  1. or download this
    if ($blah=~m/^\s/) {
        $blah=~s/^\s+//;
    }
    
  2. or download this
    if (index($blah," ")) == 0 {
        $blah=~s/^\s+//;
    }