I have this code
String RateBuy7 = Regex.Match(Response, @"</a></td><td>([0-9]+\.+[0-9]+)</td><td>").Groups[1].Value;
I need to find a number that could be like int ("12") and be like double ("12.5"). How to do it right?
Because that code ([0-9]+\.+[0-9]+) have only found float numbers. But those numbers aren't always float. Help me please//