Hi, I am trying to write a regular expresssion which reads as : from the list of following files generate a list which does not start with 150d in the beginning: 150d1.fea 157a6.fea 170c5.fea 2168f5.fea....
this is how i am trying to do it now :
where
$no="150d"; <-- this has to be variable
@list= `ls`;
@new= grep {/[^{no}]/} @list;
Can anyone tell me whats wrong in this ?
-Mandar
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
