in reply to Re: Re: Regex to match string with numbers with possible comma
in thread Regex to match string with numbers with possible comma

We're talking about a fairly predictable response, where I wouldn't expect to see multiple "found" messages. You provide one easy fix with *?. Another is:/found \S+ results/

The PerlMonk tr/// Advocate