example" />

将 BBCode [link='www.example.com]example[/link] 转换为 HTML example

发布于 2024-08-16 07:20:48 字数 721 浏览 6 评论 0 原文

我的正则表达式有问题。我想翻译 BBCode 链接标签,例如:
[link=www.stackoverflow.com]Stack-Overflow[/link] 转换

为 HTML 链接:
Stack-Overflow

在我的字符串中,可以在 BBCode 中创建多个链接。 我还需要一个将 HTML 转换回 BBCode 的函数。

我的功能是:

我对这些功能的问题是,当我有多个链接要转换时,它不起作用。

当我将一个链接翻译为 HTML 并且我想翻译回来时,我只有该链接的第一个字符。

I have a problem with my RegEx. I want to translate a BBCode link tag like:
[link=www.stackoverflow.com]Stack-Overflow[/link]

into a HTML link:
<a href='www.stackoverflow.com'>Stack-Overflow</a>.

In my string it's possible to make more than one link in BBCode.
I also need a function to translate the HTML back to BBCode.

My functions are:

  • BBCode To HTML:

    $Text = preg_replace(
        '/\[link=([^ ]+).*\](.*)\[\/link\]/',
        '<a href="$1">$2</a>',
        $Text
    );
    
  • HTML To BBCode:

    $Text = preg_replace(
        '/\<a href="([^ ]+).*\">(.*)\<\/a\>/Usi',
        '[link=$1]$2[/link]',
        $Text
    ); 
    

My problem with these functions is when I have more than one link to convert, it doesn't work.

And when I have one link translated to HTML and I want to translate back, I have only the first character of the link.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

愁杀 2024-08-23 07:20:48

至于你的第一个问题, * 是贪婪的,所以它捕获第一个和最后一个链接之间的所有内容。一个简单的解决方案是使用非贪婪限定符,或者不允许在您的组中使用 []

\[link=([^ \[\]]+)\]([^\[\]]*)\[\/link\]

类似地,反之亦然:

<a href="([^ "]+)">([^<]*?)\<\/a\>

这是非贪婪版本。它允许在链接中使用 [],甚至更短:

\[link=([^ ]*?)\](.*?)\[\/link\]

As for your first problem, * is greedy, so it catches everything between the first and last links. A simple solution is to use a non-greedy qualifier, or to not allow [] in your groups:

\[link=([^ \[\]]+)\]([^\[\]]*)\[\/link\]

Similarly, for the other way around:

<a href="([^ "]+)">([^<]*?)\<\/a\>

Here's the non-greedy version. It allows [] in links, and is even shorter:

\[link=([^ ]*?)\](.*?)\[\/link\]
暖阳 2024-08-23 07:20:48

你的问题在于贪婪。*
使用 ?使其不贪婪。

$Text = preg_replace(
    '/\[link=([^ ]+).*?\](.*?)\[\/link\]/',
    '<a href="$1">$2</a>',
    $Text
);

Your problem is with the greedy .*
Use ? to make it non greedy.

$Text = preg_replace(
    '/\[link=([^ ]+).*?\](.*?)\[\/link\]/',
    '<a href="$1">$2</a>',
    $Text
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文