doumianfeng6979 2015-05-16 04:30
浏览 68
已采纳

PHP在数组中的特定字符串后获取字符串

I have a string something like aa/bb/cc/dd/55/44. Now I converted it into array using explode function.

explode("/","aa/bb/cc/dd/55/44");

Here, I want to always get the string after dd. String is dynamic i.e. dd can come in any position, but immediately after dd i want to get the string i.e. 55. How can I achieve it using PHP ?

  • 写回答

4条回答 默认 最新

  • donvo24600 2015-05-16 05:24
    关注

    However, for the record, if you wanted to safely catch all the occurrences of your pattern (not only just the last match), anything in between the dd/ and the next first /, then you may use the following:

    $re = "~(?<=dd/).*?(?=/)~"; 
    $str = "aa/bb/cc/dd/55/44/dd/66/"; 
    
    preg_match_all($re, $str, $matches);
    print_r($matches[0]);
    // output: Array ( [0] => 55 [1] => 66 )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集