我有一串像
var input = "data1, data2, 1233456, \"\"\" test, data, here \"\"\", 08976, test data"
我想用\"\"\" test, data, here \"\"\"
这个字符串的一部分 替换test; data; here
简而言之','
,仅用分号替换块';'
内的任何字符串\"\"\"
。
我正在尝试使用正则表达式来做到这一点。
我正在尝试使用以下正则表达式 -\[\\\\\"](.+)[\\\\\"]