2017년 6월 28일 수요일

[javascript] 문자열이 제이슨 데이터로 파싱이 가능한지에 대한 조건식 (정규식)


var text = "문자열";


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

console.log("is jsonString");
  //the json is ok

}else{

console.log("is not jsonString");
  //the json is not ok

}







댓글 없음:

댓글 쓰기

[oracle]백업및 복구

[oracle]백업및 복구 오라클 덤프 백업및 복구 윈도우 서버 기반 간단 정리 --디렉터리 조회 sqlplus 또는 dbtool 입력시작 SELECT * FROM DBA_DIRECTORIES ; --D:...