我想从数组和对象的左侧和右侧删除空格。 例如:
[ **remove space**{**remove space** "test t":"asd asd" **remove space**} **remove space**]
答案 0 :(得分:1)
使用正则表达式文字。
str = '[ { "test t":"asd asd" } ]';
str = str.replace( / *([\[|\]|\{|\}]) */g, "$1");
console.log( str );