Help for this page

Select Code to Download


  1. or download this
    $string =~ /^[smtwhfa]*$/
    
  2. or download this
    $string =~ /^[smtwhfa]*(?![smtwhfa])$/
    $string =~ /^[s{1}m{1}t{1}w{1}h{1}f{1}a{1}]*$/
    $string =~ /^([smtwhfa])(?!\1)*$/
    
  3. or download this
    my $string = "smasm";
    my @array = split(//, $string);
    ...
            last;   
        }
    }