使用 JavaScript 去掉引号并转换为 JSON 对象?
要做到这一点,你可以使用 replace() 与 parse()。以下代码演示了如何操作: -
示例
var studentDetails = `"{""name"": ""John"",""subjectName"": ""Introduction To JavaScript""}"`; console.log("The actual object="); console.log(studentDetails); var removeFirstAndLast = studentDetails.substring(1,studentDetails.length-1) var removeDoubleQuotes = removeFirstAndLast.replace(/""/gi, `"`) console.log(removeDoubleQuotes) var output = JSON.parse(removeDoubleQuotes); console.log(output);
要运行上述程序,你需要使用以下命令: -
node fileName.js.
此处我的文件名是 demo103.js。
输出结果
这将产生以下输出结果: -
PS C:\Users\Amit\JavaScript-code> node demo103.js The actual object= "{""name"": ""John"",""subjectName"": ""Introduction To JavaScript""}" {"name": "John","subjectName": "Introduction To JavaScript"} { name: 'John', subjectName: 'Introduction To JavaScript' }
广告