in reply to Regex to match string with numbers with possible comma
=~ tr/,//d;
This would remove any commas in the string before you attempt a match. Then your match could be:
=~ /AltaVista found /(\d+)/ results/; [download]
Chris