我有一個簡單的正則表達式代碼來匹配具有特定單詞的文本文件中的整行。我使用 PHP 函數(shù) preg_match_all。這是我的正則表達式模式:$word= 'world';$contents = 'this is my WoRldthis is my worldthis is my wORLDthis is my home';$pattern = "/^.*$word.*\$/m";preg_match_all($pattern, $contents, $matches);// results will be in $matches[0]此函數(shù)獲取整行但僅搜索區(qū)分大小寫,因此它將僅返回文本的第二行。我希望它匹配所有行(任何形式的“世界”字)。我閱讀了有關(guān)使用 /i 的信息,但我不知道如何將它與上面的模式結(jié)合起來。我試過:/^。$模式。\$/m/i/^。$模式。\$/m/i/^。$模式。\$/我
1 回答

九州編程
TA貢獻1785條經(jīng)驗 獲得超4個贊
這個表情,
(?i)^.*\bworld\b.*$
可能只是返回那些所需的字符串。
測試
$re = '/(?i)^.*\bworld\b.*$/m';
$str = 'this is my WoRld
this is my world
this is my wORLD
this is my home';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
var_dump($matches);
輸出
array(3) {
[0]=>
array(1) {
[0]=>
string(16) "this is my WoRld"
}
[1]=>
array(1) {
[0]=>
string(16) "this is my world"
}
[2]=>
array(1) {
[0]=>
string(16) "this is my wORLD"
}
}
正則表達式電路
jex.im可視化正則表達式:
- 1 回答
- 0 關(guān)注
- 312 瀏覽
添加回答
舉報
0/150
提交
取消