本文實例講述了JavaScript實作解析INI檔案內容的方法。分享給大家供大家參考,具體如下:
.ini 是Initialization File的縮寫,即初始化文件,ini文件格式廣泛用於軟體的設定檔。
INI檔案由節、鍵、值、註解組成。
根據node.js版本的node-iniparser改寫了個JavaScript函數來解析INI檔案內容,傳入INI格式的字串,傳回一個json object。
function parseINIString(data){ var regex = { section: /^\s*\s*([^]*)\s*\]\s*$/, param: /^\s*([\w\.\-\_]+)\s*=\s*(.*?)\s*$/, comment: /^\s*;.*$/ }; var value = {}; var lines = data.split(/\r\n|\r|\n/); var section = null; lines.forEach(function(line){ if(regex.comment.test(line)){ return; }else if(regex.param.test(line)){ var match = line.match(regex.param); if(section){ value[section][match[1]] = match[2]; }else{ value[match[1]] = match[2]; } }else if(regex.section.test(line)){ var match = line.match(regex.section); value[match[1]] = {}; section = match[1]; }else if(line.length == 0 && section){ section = null; }; }); return value; }
測試INI內容:
回傳結果對象:
回傳結果對象: