最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Replacing all square brackets with curly brackets - Stack Overflow

programmeradmin1浏览0评论

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/

发布评论

评论列表(0)

  1. 暂无评论