I have one string like
var input = "data1, data2, 1233456, \"\"\" test, data, here \"\"\", 08976, test data"
I want to replace \"\"\" test, data, here \"\"\" part of this string with test; data; here
In simple words replace comma ',' with semincolon ';' any string inside \"\"\" block only.
I am trying to do this with a Regular expression.
I am trying to use following regex - \[\\\\\"](.+)[\\\\\"]