- or download this
$sentence=~ s/\s//igs;
- or download this
my @four=$sentence=~ /[a-zA-Z]{4}/igs; # Line 9
- or download this
my $length=length($word);
- or download this
unless (open(RESULT,">$output")){
- or download this
} until ( my $word=~ /^.*$/); # Line 22
- or download this
#!/usr/bin/perl
use warnings;
...
}
close RESULT;