admin管理员组文章数量:1342526
I've tried: (Incase all the slashes make it hard to read, 1st line should replace forward slashes, 2nd line should replace backslashes, 3rd line should replace asterisks.
newbigbend = bb_val.replace(/\//gi,"");
newbigbend = bb_val.replace(/\\/gi,"");
newbigbend = bb_val.replace(/*/gi,"");
to replace all forward slashes, backslashes and asterisks. But when the browser gets to the middle line newbigbend = bb_val.replace(/\\/gi,"");
it thinks its an unterminated ment. I know to use the escape to replace the forward slash. Not sure about back.
I've tried: (Incase all the slashes make it hard to read, 1st line should replace forward slashes, 2nd line should replace backslashes, 3rd line should replace asterisks.
newbigbend = bb_val.replace(/\//gi,"");
newbigbend = bb_val.replace(/\\/gi,"");
newbigbend = bb_val.replace(/*/gi,"");
to replace all forward slashes, backslashes and asterisks. But when the browser gets to the middle line newbigbend = bb_val.replace(/\\/gi,"");
it thinks its an unterminated ment. I know to use the escape to replace the forward slash. Not sure about back.
- What does bb_val contain? What do you want it to be? – shahkalpesh Commented May 2, 2011 at 7:06
-
You could do this with one regex instead of three:
/[\/\\\*]/
– Markus Hedlund Commented May 2, 2011 at 7:16
2 Answers
Reset to default 8Andrew Cooper's answer is correct in terms of why that third statement is going wrong. But you're also overwriting newbigbend
each time, so you won't see the result of the first two replacements at all.
If you're trying to replace all slashes, backslashes, and asterisks with nothing, do this:
newbigbend = bb_val.replace(/[/\\*]/g, "");
Note you don't need the i
flag, none of those characters is case sensitive anyway. (And note that within the []
, you don't need to escape /
or *
, because they don't have special meaning there.) Live example.
But if you want it as three individual statements for whatever reason, then use newbigbend
in the second two (and add the backslash Andrew flagged up):
newbigbend = bb_val.replace(/\//gi,"");
newbigbend = newbigbend.replace(/\\/gi,"");
newbigbend = newbigbend.replace(/\*/gi,"");
You also need to escape the *
newbigbend = bb_val.replace(/\*/gi,"");
本文标签: htmlHow to do a global replace on backslash in a string in javascriptStack Overflow
版权声明:本文标题:html - How to do a global replace on backslash in a string in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743658133a2517485.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论