dreamone5156 2011-02-13 17:33
浏览 74
已采纳

构造正则表达式来提取多个数据

I need a regular expression to get the Event, Name, School, Final Swim Time, and Swim Threshold (The DIIA) from a Results page like the one at ( http://www.gliac.org/sports/mswimdive/2010-11/stats/Results_Wed_Finals.htm ). Note that the results are sepereated from the rest of the page by the "pre" html tag.

Each "line" looks like this:

1 Donahue, Maura            19 INDY                10:39.77   10:03.60 DIIA

Unfortunately, I'm not sure exactly how to do so. One of the problems (in my mind!) is that sometimes it displays the swimmers age (19) and other times it doesn't. In addition, sometimes results show their seed time (10:39.77) and other times it only has the final time (10:03.60).

I started the regex by trying to split up to the "," in the first name, but failed miserably.

I'm using simple_html to extract the contents of the HTML page.

My code looks like this (I'm using PHP):

  $results_url = "http://www.gliac.org/sports/mswimdive/2010-11/stats/Results_Wed_Finals.htm";
// Create a DOM object from a URL
$html = file_get_html($results_url);
if (!$html->find('pre')) {
    $parse_error = "Yes";
}
if (!isset($parse_error)) {    
        $regex = "/[0-9]+(?=[ \s]+)(?=[A-Za-z]+)/";
        $splits = preg_split($regex, $html, PREG_SPLIT_DELIM_CAPTURE);
        print_r($splits);    
}

If you can help out or point me in the right direction, that would be awesome! Is it even possible to run a regex against the results to extract this data?

Thank you!

  • 写回答

2条回答 默认 最新

  • doumuyu0837 2011-02-13 18:40
    关注

    I wont pretend to know what all those numbers mean, but here's something to help start you off with the first line of each person.

    preg_match_all('/(?P<position>[0-9-]+)\s+(?P<last>[a-z]+)\s*,\s*(?P<first>[a-z]+)\s+((?P<age>[0-9]{2})\s)?(?P<school>[a-z -]+[a-z])\s+(?P<seed>(NT|[0-9:.]+))\s+(?P<final>[0-9:\.]+)\s+(?P<division>[a-z]+)/is', $html, $matches);
    print_r($matches);
    

    The regex is very basic and seems to work right now, but when dealing with content you don't have control over, you may want to account for a lot more. For instance, right now that name matching wont work with names that have accented characters or punctuation characters like in the name O'Reilly.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大