正则表达式调整:删除括号

发布于 2024-11-07 05:57:42 字数 392 浏览 1 评论 0原文

我有以下脚本:

    $(".Text").contents().each(function () {
   $(this).replaceWith($(this).text()
            .replace(/\[([^\]]*)\]/g, '<span class="IT_Symbol" style="display:inline;border: 1px solid blue;">$&</span>')
        );
    });

它找到方括号之间的任何内容并将其用类包装。元素样式是这样我可以看到它的工作原理,因为该脚本是通过双击触发的。目前它可以找到方括号之间的所有内容,包括方括号本身。如果可能的话,我想去掉括号,但保留中间的内容。

I have the following script:

    $(".Text").contents().each(function () {
   $(this).replaceWith($(this).text()
            .replace(/\[([^\]]*)\]/g, '<span class="IT_Symbol" style="display:inline;border: 1px solid blue;">
amp;</span>')
        );
    });

It finds anything between square brackets and wraps it with a class. The element style is so i can see it working, as this script is triggered by a doubleclick. Currently it finds everything between square brackets including the brackets themselves. If possible, i'd like to remove the brackets, but keep what's between.

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

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

发布评论

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

评论(1

樱&纷飞 2024-11-14 05:57:42

您将替换为 $&,这是整个匹配的文本。如果替换为 $1,则仅匹配第一组,即 ([^\]]*),因此排除周围的括号。

$(".Text").contents().each(function () {
    $(this).replaceWith($(this).text().replace(/\[([^\]]*)\]/g, '<span class="IT_Symbol" style="display:inline;border: 1px solid blue;">$1</span>'));
});

You're replacing with $&, which is the whole matched text. If you replace with $1 instead, this only matches the first group, which is ([^\]]*), and therefore excludes the surrounding brackets.

$(".Text").contents().each(function () {
    $(this).replaceWith($(this).text().replace(/\[([^\]]*)\]/g, '<span class="IT_Symbol" style="display:inline;border: 1px solid blue;">$1</span>'));
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文