我看到的代碼片段這樣什麼string.split(/(, n S +)/)不
// o is a string
var o = JSON.stringify({
"name": "my title",
"version": "0.0.2",
"description": "my desc",
"main": "index.js"}, null, 2)
o.split(/(,\n\s+)/)
.map(function (e, i) {
return i%2 ? '\n'+e.substring(4)+' ,' : e
})
.join('');
什麼/(,\n\s+)/
做在分割功能?