正则表达式只从数组和对象括号的左侧和右侧删除空格

时间:2017-12-04 05:50:17

标签: javascript jquery regex

我想从数组和对象的左侧和右侧删除空格。 例如:

[ **remove space**{**remove space** "test t":"asd asd" **remove space**} **remove space**]

1 个答案:

答案 0 :(得分:1)

使用正则表达式文字。

str = '[      {      "test t":"asd asd"      }      ]';
str = str.replace( / *([\[|\]|\{|\}]) */g, "$1");
console.log( str );