我有以下模式:
\<\?php\s*\/\*\s*magicNoteStart\s*\*\/([\w\W]*)\s*\/\*\s*magicNoteEnd\s*\*\/\s*\?\>
要匹配以下示例:
<?php
/* magicNoteStart */
$ancillaries = array(
'Page Information' => array(
'hidden' => true
),
'Metadata' => array(
'hidden' => true
),
'Revision Note' => array(
'hidden' => true
)
);
/* magicNoteEnd */
?>
<html>
<head>
<title>Test HTML</title>
</head>
</html>
因此,目标是能够将{regex}用于preg_match()
和preg_replace()
。
当与preg_replace()
一起使用时,它应该删除示例顶部的整个PHP部分代码,所以我目前有:
$contents = preg_replace(self::$magic_note_regex, '', $contents, 1);
preg_match()
用于提取/* magicNoteStart */
和/* magicNoteEnd */
之间的所有内容,以便有效eval()
。目前我的代码如下:
if(preg_match(self::$magic_note_regex, $contents, $matches)) {
return trim($matches[1]);
}
这是遗留系统,我无法破解向后兼容性。我不能保证在任何事情之间会有多少空格,因此我在上面输入的模式中过度使用了\s*
。
那么编写这个正则表达式的最短方法是什么?
答案 0 :(得分:1)
试试这个:
$pattern = "#/\*\s*magicNoteStart\s*\*/.*\*\s*magicNoteEnd\s*\*/#s";
我忽略了PHP标记,但如果需要,可以重新添加它们。
答案 1 :(得分:0)
怎么样
(\/\*\s*magicNoteStart\s*\*\/.*magicNoteEnd\s*\*\) //(I didd't test it)
因为您想要评估它,所以评论将被忽略。