Help for this page

Select Code to Download


  1. or download this
    if (/^(\w+)$/) { print "found [$1]\n"; }
    
  2. or download this
    if (/^([A-Za-z]+)$/) { print "found [$1]\n"; }
    
  3. or download this
    if (/^([[:alpha:]]+)$/) { print "found [$1]\n"; }