On 10/26/2010 04:20 PM, Suresh Rajachar wrote: > try this.. > <span class=\"x6\">(.*)</span>
This is much too greedy. If anything, <span class=\"x6\">(.*?)</span> or even <span class=\"x6\">([^<]*)</span> I don't see why the original won't work, though. Cheers, Felix --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

