Help for this page

Select Code to Download


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