douxie7738 2012-03-23 15:43 采纳率: 0%
浏览 36
已采纳

PHP正则表达式用括号括起字符串之前的数字

Trying to grab the numbers in front of (h), (w) and (d). These are dynamic and I can't get the syntax for it:

    <ul>
      <li>Make: Mymake</li>
      <li>Model: R-22GTF</li>
      <li>Dimensions: 13.25&#34; (h) x 20.13&#34; (w) x 18.5&#34; (d)</li>
      <li>Sold Individually </li>
      <li>Weight: 0 lbs.</li>
    </ul>

if (preg_match("/Dimensions: ((?:\d+)(?:\.\d*)?)/", $desc, $DIMS) == true)
    { echo $DIMS[1];}

The above only returns 13.25. I would like each in its own array or own variable. Each as defined by the number before (h), the number before (w), and the number before (d).

  • 写回答

3条回答 默认 最新

  • doulan8330 2012-03-23 16:02
    关注
    <?php
    
    $input = "    
         <ul>
          <li>Make: Mymake</li>
          <li>Model: R-22GTF</li>
          <li>Dimensions: 13.25&#34; (h) x 20.13&#34; (w) x 18.5&#34; (d)</li>
          <li>Sold Individually </li>
          <li>Weight: 0 lbs.</li>
        </ul>";
    
    $re = '/.* (\d+\.\d+).*\(h\) .* (\d+\.\d+).*\(w\) .* (\d+\.\d+).*\(d\)/';
    if(preg_match($re, $input, $matches))
       echo sprintf("H: %s   W: %s   D: %s
    ", $matches[1], $matches[2], $matches[3]);
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)