Help for this page

Select Code to Download


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