- or download this
$exten=|\.txt|\.doc|\.xml
- or download this
$exten = '|\.txt|\.doc|\.xml';
- or download this
my $exten = '|\.txt|\.doc|\.xml';
...
print /$exten/ ? "match" : "no match";
print "\n";
}
- or download this
foo.txt: match
foo.csv: match
foo.xml: match
- or download this
my $exten = '\.txt|\.doc|\.xml';
...
print /$exten/ ? "match" : "no match";
print "\n";
}
- or download this
foo.txt: match
foo.csv: no match
foo.xml: match