- or download this
foreach my $checked (@chk_acc)
{
chomp();
- or download this
if($checked=~/^(\w{3})(\d{4,7})/ig)
{
# it should print the accounts starting with letters here
- or download this
if ( $checked =~ /^[[:alpha:]]{3}\d{4,7}/ )
{
# it should print the accounts starting with letters here