去掉括号和绳子以及后面的空格

发布于 2024-12-19 16:34:05 字数 742 浏览 1 评论 0原文

我有一个像这样的变量字符串: [Text thatchanges]:SPACE: 其中 :SPACE: 实际上是一个普通的空格。我需要删除括号和里面的所有内容,以及后面的空格。

我有这个:

      //<![CDATA[ 
  $(window).load(function(){
function stripParenthesis( node ) {
    if(node.length) {
        node.contents().each(function(index, child) {
            if( child.nodeType === 3 ) {
                child.nodeValue = child.nodeValue.replace(/\[.*?\]/g, '');
            }
            else {
                stripParenthesis( $(child) );
            }
        });
    }
}

stripParenthesis( $('div#brackets') );   });  //]]>

这可以删除括号和里面的所有东西。但接下来的空间呢?我不知道如何调整以下内容以使其包含右括号和后面的空格...

.replace(/\[.*?\]/g, '')

感谢您提供的任何帮助。另外,即使在某个时候没有括号,这个函数也有望工作?

I have a variable string like such: [Text that changes]:SPACE: where the :SPACE: is actually a normal space. I need to remove the brackets and everything inside, plus the space following.

I have this:

      //<![CDATA[ 
  $(window).load(function(){
function stripParenthesis( node ) {
    if(node.length) {
        node.contents().each(function(index, child) {
            if( child.nodeType === 3 ) {
                child.nodeValue = child.nodeValue.replace(/\[.*?\]/g, '');
            }
            else {
                stripParenthesis( $(child) );
            }
        });
    }
}

stripParenthesis( $('div#brackets') );   });  //]]>

This manages to remove the brackets and everything inside. But what about the space following? I don't know how to adjust the following to make it include both the closing bracket and the space following...

.replace(/\[.*?\]/g, '')

Thanks for any help you can provide. Also, this function will hopefully work even if at some point there is no bracket?

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

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

发布评论

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

评论(2

流星番茄 2024-12-26 16:34:05

在此处输入代码只需在末尾添加 \s(空白字符)即可。

.replace(/\[.*?\]\s/g, '')

在这里测试一下:http://gskinner.com/RegExr/

编辑 - - 完整代码:

//<![CDATA[ 
  $(window).load(function(){
function stripParenthesis( node ) {
    if(node.length) {
        node.contents().each(function(index, child) {
            if( child.nodeType === 3 ) {
                child.nodeValue = child.nodeValue.replace(/\[.*?\]\s/g, '');
            }
            else {
                stripParenthesis( $(child) );
            }
        });
    }
}

stripParenthesis( $('div#brackets') );   });  //]]>

enter code hereJust need to add the \s (whitespace char) at the end.

.replace(/\[.*?\]\s/g, '')

test it out here: http://gskinner.com/RegExr/

EDIT -- Complete Code:

//<![CDATA[ 
  $(window).load(function(){
function stripParenthesis( node ) {
    if(node.length) {
        node.contents().each(function(index, child) {
            if( child.nodeType === 3 ) {
                child.nodeValue = child.nodeValue.replace(/\[.*?\]\s/g, '');
            }
            else {
                stripParenthesis( $(child) );
            }
        });
    }
}

stripParenthesis( $('div#brackets') );   });  //]]>
滥情空心 2024-12-26 16:34:05

我相信这应该有效

child.nodeValue = child.nodeValue.replace(/\[.*?\]\s/g, '');

This should work I believe

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