Help for this page

Select Code to Download


  1. or download this
    if( $locale)
      { use locale; }
    
    ...
      { use utf8; }
    
    if( $word=~ /^\w+$/) { ... }
    
  2. or download this
    if( $locale)
      { use locale; 
        if( $word=~ /^\w+$/) { ... }
    ...
      { use utf8; 
        if( $word=~ /^\w+$/) { ... }
      }