Help for this page

Select Code to Download


  1. or download this
    my($before, $after) = split(/\./, $word);
    
  2. or download this
    my @tokens = split(/\./, $word);
    
  3. or download this
    $word =~ /^[a-zA-Z]+\.[a-zA-Z]*$/;