Gossamer Forum
Home : General : Perl Programming :

How can i check the upload file sort ( txt,gif,jpg or other ) ?

Quote Reply
How can i check the upload file sort ( txt,gif,jpg or other ) ?
How can i check the upload file sort ( txt,gif,jpg or other ) ?
Quote Reply
Re: How can i check the upload file sort ( txt,gif,jpg or other ) ? In reply to
 
try: ($input =~ /.gif$|.jpg$|.txt/)
Quote Reply
Re: How can i check the upload file sort ( txt,gif,jpg or other ) ? In reply to
I think that should be:

$input =~ m/\.(gif|jpg|txt)$/;

You need to escape the period, and you don't want the end of line match on each alteration.

Cheers,

Alex