doudang2537 2015-03-16 15:32
浏览 54
已采纳

我需要一个正则表达式来匹配所有单个单词和每两个单词

Im using PHP preg_match_all function and I need it to return an array of every single word AND every pair of words, including those single words, for example:

preg_match_all('/the regex/','Stackoverflow is awesome',$matches);

The $matches array should contain:

('Stackoverflow' , 'is' , 'awesome' , 'Stackoverflow is' , 'is awesome')

I've tried with this regex but not getting the expected results:

[a-z]+\s?[a-z]*

  • 写回答

5条回答 默认 最新

  • dongliping003116 2015-03-16 15:38
    关注

    I don't think you can achieve that with just regular expressions. I would say, use explode and construct the array yourself.

    $string = 'Stackoverflow is awesome';
    $parts = explode(' ', $string);
    for ($i = 1; $i < count($parts); $i++) {
        $parts[] = $parts[$i - 1] . ' ' . $parts[$i];
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记