编写这个正则表达式的最短方法是什么?
我有以下模式:
\<\?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>
因此,目标是能够将正则表达式用于 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*
。
那么编写这个正则表达式的最短方法是什么?
I have the following pattern:
\<\?php\s*\/\*\s*magicNoteStart\s*\*\/([\w\W]*)\s*\/\*\s*magicNoteEnd\s*\*\/\s*\?\>
To match against the following sample:
<?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>
So the aim is to be able to use the regex for both a preg_match()
and a preg_replace()
.
When used with preg_replace()
it should remove the entire PHP portion of code at the top of the sample so I currently have:
$contents = preg_replace(self::$magic_note_regex, '', $contents, 1);
preg_match()
is used to extract everything between the /* magicNoteStart */
and /* magicNoteEnd */
so it can effectively be eval()
ed. Currently my code for this looks like:
if(preg_match(self::$magic_note_regex, $contents, $matches)) {
return trim($matches[1]);
}
This is in a legacy system and I am unable to break backwards compatibility. I cannot guarantee how much whitespace there will be between anything hence my overuse of \s*
in the pattern I have entered above.
So what is the shortest way to write this regex?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
我忽略了 PHP 标签,但如果需要,您可以将它们添加回来。
Try this:
I've ignored the PHP tags, but you can add them back in if required.
怎么样。
既然你想评估它,那么评论将被忽略
How about
since you want to eval it, the comments will be ignored .