admin管理员组文章数量:1341855
I'm trying to replace "[" and "]" characters in the string using javascript.
when I'm doing
newString = oldString.replace("[]", "");
then it works fine - but the problem is I have a lot of this characters in my string and I need to replace all of the occurrences.
But when I'm doing:
newString = oldString.replace(/[]/g, "");
or
newString = oldString.replace(/([])/g, "");
nothing is happens. I've also tried with HTML numbers like
newString = oldString.replace(/[]/g, "");
but it doesn't work neither. Any ideas how to make it?
I'm trying to replace "[" and "]" characters in the string using javascript.
when I'm doing
newString = oldString.replace("[]", "");
then it works fine - but the problem is I have a lot of this characters in my string and I need to replace all of the occurrences.
But when I'm doing:
newString = oldString.replace(/[]/g, "");
or
newString = oldString.replace(/([])/g, "");
nothing is happens. I've also tried with HTML numbers like
newString = oldString.replace(/[]/g, "");
but it doesn't work neither. Any ideas how to make it?
Share Improve this question edited May 28, 2015 at 14:39 Aurelio 25.8k9 gold badges61 silver badges64 bronze badges asked May 28, 2015 at 14:36 user2654186user2654186 1952 gold badges4 silver badges11 bronze badges 1- 1 And why you can't use regular replace without regexps? – Matías Fidemraizer Commented May 28, 2015 at 14:42
4 Answers
Reset to default 11You either need to escape the opening square bracket, and add a pipe between them:
newString = oldString.replace(/\[|]/g, "");
Or you need to add them in a character class (square brackets) and escape them both:
newString = oldString.replace(/[\[\]]/g, "");
DEMO
"...there are 12 characters with special meanings: the backslash
\
, the caret^
, the dollar sign$
, the period or dot.
, the vertical bar or pipe symbol|
, the question mark?
, the asterisk or star*
, the plus sign+
, the opening parenthesis(
, the closing parenthesis)
, and the opening square bracket[
, the opening curly brace{
... If you want to use any of these characters as a literal in a regex, you need to escape them with a backslash."
[]
in a regex is a character class. Since you haven't escaped, them you're saying a "find any of the following characters", and not providing any. Try /[\[\]]/
instead.
edit: @andy is right. forgot to put in a container []
.
This is a simple solution :
newString = oldString.split("[]").join("");
had a similair situation. i just used backslash like so.
-replace '\[','' -replace ']',''
本文标签: regexCan39t replace quotquot and quotquot characters in a string in JavascriptStack Overflow
版权声明:本文标题:regex - Can't replace "[" and "]" characters in a string in Javascript - Stack Overf 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743618451a2511128.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论