Help for this page

Select Code to Download


  1. or download this
    if ( $content =~ /\t/ ) {
        $content =~ s/\t//g;
    }
    
  2. or download this
    $content =~ tr/\t//d;
    
  3. or download this
        if ( $line =~ /CONTACT/ ) {
            $line =~ s/CONTACT//;
    
  4. or download this
        if ( $line =~ s/CONTACT// ) {
    
  5. or download this
                    if ( $line =~ /(.+?)=.+/ ) {
                        unless ( $cols{$1} and $cols{$1} == 1 ) {
                            $cols{ ucfirst lc $1 } = 1;
                            push @cols, ucfirst lc $1;
                        }
    
  6. or download this
            if ( $$row{$_} ) {
                push @rows, $$row{$_};
            }