Help for this page

Select Code to Download


  1. or download this
     
    if ($string =~ tr/a-zA-Z0-9 //c) { 
      # trigger error message. 
    }
    
  2. or download this
    if ($string =~ tr/a-zA-Z0-9 \t\n//c) { 
      # trigger error message. 
    }