Help for this page

Select Code to Download


  1. or download this
    $exten=|\.txt|\.doc|\.xml
    
  2. or download this
    $exten = '|\.txt|\.doc|\.xml';
    
  3. or download this
    my $exten = '|\.txt|\.doc|\.xml';
    
    ...
      print /$exten/ ? "match" : "no match";
      print "\n";
    }
    
  4. or download this
    foo.txt: match
    foo.csv: match
    foo.xml: match
    
  5. or download this
    my $exten = '\.txt|\.doc|\.xml';
    
    ...
      print /$exten/ ? "match" : "no match";
      print "\n";
    }
    
  6. or download this
    foo.txt: match
    foo.csv: no match
    foo.xml: match