Help for this page

Select Code to Download


  1. or download this
        $text =~ s/[\s|\n]*//g;
    
  2. or download this
        $text =~ s/[ \t\n\r\f|\n]*//g;
    
  3. or download this
        $text =~ s/\s+//g;
    
  4. or download this
        $text =~ s/^[---]+//;
    
  5. or download this
        $text =~ s/^[-]+//;
    
  6. or download this
        $text =~ s/^-+//;