in reply to Regex to match string with numbers with possible comma

You could precede that statement with:

=~ tr/,//d;

This would remove any commas in the string before you attempt a match. Then your match could be:

=~ /AltaVista found /(\d+)/ results/;
HTH,

Chris