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 Python报错怎么解决
  • ¥15 simulink如何调用DLL文件
  • ¥15 关于用pyqt6的项目开发该怎么把前段后端和业务层分离
  • ¥30 线性代数的问题,我真的忘了线代的知识了
  • ¥15 有谁能够把华为matebook e 高通骁龙850刷成安卓系统,或者安装安卓系统
  • ¥188 需要修改一个工具,懂得汇编的人来。
  • ¥15 livecharts wpf piechart 属性
  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题