Help for this page

Select Code to Download


  1. or download this
      #$name =~ s/^(The|A|An) //i;
       $name =~ s/^(?:The|An?) //i;  # no capturing
    ...
                    ? join('.',@abbr) . '.' 
                    : join('', @abbr);
    
  2. or download this
    use strict;
    use warnings;
    ...
                )
              . ($ON{HTML}  ? qq{</abbr>} : "")
    }
    
  3. or download this
       /(The|A|An)/;
    
  4. or download this
       /((?:The|A|An))/;