我有一个字符串:
8晚你涂鸦贵宾犬
我希望检索nights
和poodle
之间的所有内容,因此在上面的示例中,输出应为you doodle
。
我正在使用以下正则表达式。请有人指出我可能做错了吗?
if (preg_match("nights\s(.*)\spoodle", "8 nights you doodle poodle", $matches1)) {
echo $matches1[0]."<br />";
}
答案 0 :(得分:7)
你很接近,但是你在$matches1
上访问了错误的索引。 $matches1[0]
将返回在preg_match();
尝试$matches1[1]
;
此外,您需要将正则表达式括在/
个字符中;
if (preg_match("/nights\s(.*)\spoodle/", "8 nights you doodle poodle", $matches1)) {
echo $matches1[1]."<br />";
}
输出
you doodle<br />
答案 1 :(得分:0)
你可能想要这样的东西
if (preg_match("/nights\s(.*)\spoodle/", "8 nights you doodle poodle", $matches1)) {
echo $matches1[1]."<br />";
}
查看rubular.com以测试您的正则表达式。这是另一个相关问题:
Using regex to match string between two strings while excluding strings