I have this string
var behavior = "["Automático", "Manual", "Automático"]"
And i would like to get the same behavior variable but with something like that:
var behavior = "[Automático, Manual, Automático]"
using regex or other solution if it works.! Thaks.