📌  相关文章
📜  检查字符串是否可解析 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:28.150000             🧑  作者: Mango

代码示例3
if (/^[\],:{}\s]*$/.test(text.replace(/\\["\\\/bfnrtu]/g, '@').
replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']').
replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) {

  //the json is ok

}else{

  //the json is not ok

}