dongsheng1698 2015-09-25 17:29
浏览 41
已采纳

在正则表达式搜索中包含非字母字符

I have a working regex code, but it's not including the non-letter characters. How would I include those?

$text = "i have one treehouse. i'm the one. I have two cats.";
preg_match_all('/[\w\s]+?\bone\s?[\w\s]*?\./', $text, $array);

print_r($array);

Expected Results

$array[0] = "i have one treehouse.";
$array[1] = "i'm the one";

Actual Results

$array[0] = "i have one treehouse.";
$array[1] = "m the one"; <---cuts off at the single quote

I think it's because the regex code doesn't look for non-letter characters like ',!? and so on. How do I include those?

  • 写回答

1条回答 默认 最新

  • douzi4724 2015-09-25 17:34
    关注

    You need to include ' inside the character class.

    \b[\w'\s]+?\bone\s?[\w\s]*?\.
    

    DEMO

    preg_match_all("~\b[\w'\s]+?\bone\s?[\w\s]*?\.~", $str, $matches);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题