try
            {
                string now = DateTime.Now.ToString("yyyy-MM-dd");
                url = string.Format("{0}_{1}_{1}_1.htm", url, now);
                string form = Http.GetHtml(url, ref cookie);
                form = Other.GetRegValue("<tr><td((?!</tr>).)+", form);
                MatchCollection matches = Other.GetRegValues("<td((?!</td>).)+", form);
                int a = int.Parse(Other.GetRegValue(@"\d+", matches[3].Value));
                int b = int.Parse(Other.GetRegValue(@"\d+", matches[4].Value));
                return new ShiHuaPrice(a, b, now);
                
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                return null;
            }
这样我能读取一张表格上的第一行数据,如果这张表格里有多行需要的数据,应该怎么写?