如何获得相同的字符串之间的字符串

时间:2019-05-15 12:15:25

标签: javascript regex string

我有这个字符串

var behavior = "["Automático", "Manual", "Automático"]"

我想获得相同的行为变量,但具有类似的东西:

var behavior = "[Automático, Manual, Automático]" 

使用正则表达式或其他解决方案(如果可行)!解冻。

2 个答案:

答案 0 :(得分:1)

您正在寻找JSON.parse

var behavior = "["Automático", "Manual", "Automático"]"
console.log(
  JSON.parse(behavior.replace(/"/g,'"'))
)

答案 1 :(得分:0)

对mplungjan的解决方案表示感谢。

gfind