Hello,

On Mar 12, 12:34 am, [email protected] (Jim Gibson) wrote:
> That will test if $a starts with 'html' or 'jpg'. To test for a non-match,
> use the !~ operator:
>

I can't, since I will add more criteria into the regex,

e.g.

I need to match a.* , except a.html or a.jpg

 if ( $a =~ /a\.(?:html|jpg)$/i ) # of course this one does not work.


Thanks.


--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/


Reply via email to