去掉括号和绳子以及后面的空格
我有一个像这样的变量字符串: [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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处输入代码
只需在末尾添加 \s(空白字符)即可。在这里测试一下:http://gskinner.com/RegExr/
编辑 - - 完整代码:
enter code here
Just need to add the \s (whitespace char) at the end.test it out here: http://gskinner.com/RegExr/
EDIT -- Complete Code:
我相信这应该有效
This should work I believe