admin管理员组

文章数量:1339794

I have a string "[[[[[]]]]]" and I want to convert it in "{{{{{}}}}}". I tried "[[[[[]]]]]".replace(/[/g,'{').replace(/]/g,'}') but not luck so far.

I have a string "[[[[[]]]]]" and I want to convert it in "{{{{{}}}}}". I tried "[[[[[]]]]]".replace(/[/g,'{').replace(/]/g,'}') but not luck so far.

Share Improve this question asked Feb 14, 2017 at 14:12 ozilozil 7,1159 gold badges36 silver badges61 bronze badges 2
  • 8 The [ is a special char in a regex, it must be escaped. – Wiktor Stribiżew Commented Feb 14, 2017 at 14:13
  • :P and you were so close – Fallenhero Commented Feb 14, 2017 at 14:25
Add a ment  | 

2 Answers 2

Reset to default 14

The [ square bracket has to be escaped.

var string = "[[[[[]]]]]";

console.log(string.replace(/\[/g, '{').replace(/]/g, '}'));

Try this:

var string = '[[[[]]]]';
console.log(string.replace(/\[/g, "{").replace(/\]/g, "}"));

https://jsfiddle/fcte0szn/

本文标签: javascriptReplacing all square brackets with curly bracketsStack Overflow