RE: Regex not working correctly
Hi, You can try the below pattern. if($line=~/([0-9]{3,})/gs) { print $1; } Thanks, Vijaya -- From: punit jain Sent: 12/11/2013 9:07 PM To: beginners@perl.org Subject: Regex not working correctly Hi, I have a requirement where I need to capture phone number
Re: Running perl scripts on remote machine
Hi, why can't you compile an exe of the scripts such that all can be executed from the respective machines without any dependencies? Regards, Vijaya