编写这个正则表达式的最短方法是什么?

发布于 2024-11-28 17:10:45 字数 1199 浏览 0 评论 0原文

我有以下模式:

\<\?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟沫凡尘 2024-12-05 17:10:45

试试这个:

$pattern = "#/\*\s*magicNoteStart\s*\*/.*\*\s*magicNoteEnd\s*\*/#s";

我忽略了 PHP 标签,但如果需要,您可以将它们添加回来。

Try this:

$pattern = "#/\*\s*magicNoteStart\s*\*/.*\*\s*magicNoteEnd\s*\*/#s";

I've ignored the PHP tags, but you can add them back in if required.

云胡 2024-12-05 17:10:45

怎么样。

(\/\*\s*magicNoteStart\s*\*\/.*magicNoteEnd\s*\*\) //(I didd't test it)

既然你想评估它,那么评论将被忽略

How about

(\/\*\s*magicNoteStart\s*\*\/.*magicNoteEnd\s*\*\) //(I didd't test it)

since you want to eval it, the comments will be ignored .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文