我有一个简单的正则表达式代码来匹配具有特定单词的文本文件中的整行。我使用 PHP 函数 preg_match_all。
这是我的正则表达式模式:
$word= 'world';
$contents = '
this is my WoRld
this is my world
this is my wORLD
this is my home
';
$pattern = "/^.*$word.*\$/m";
preg_match_all($pattern, $contents, $matches);
// results will be in $matches[0]
此函数获取整行但仅搜索区分大小写,因此它将仅返回文本的第二行。
我希望它匹配所有行(任何形式的“世界”字)。
我阅读了有关使用 /i 的信息,但我不知道如何将它与上面的模式结合起来。
我试过:
/^。$模式。\$/m/i
/^。$模式。\$/m/i
/^。$模式。\$/我
九州编程