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