Help for this page

Select Code to Download


  1. or download this
    while ($in =~ /\W/) {
      # do something
    }
    
  2. or download this
    while ($in !~ /\w/) { ... }
    
  3. or download this
    while ($in =~ /[^a-zA-Z0-9]/) {
      # do something
    }
    
  4. or download this
    while ($in !~ /[a-zA-Z0-9]/) { ... }