本文整理汇总了TypeScript中babyparse.parse函数的典型用法代码示例。如果您正苦于以下问题:TypeScript parse函数的具体用法?TypeScript parse怎么用?TypeScript parse使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了parse函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: runTest
function runTest(test: ParserTest): boolean {
var actual = Baby.parse(test.input, test.config);
var results = compare(actual.data, actual.errors, test.expected);
displayResults(test, actual, results);
return results.data.passed && results.errors.passed;
}
示例2: function
// // Now make the whitespace and invisible characters
// // within the spans actually appear on the page
// txt = txt.replace(/">\r\n<\/span>/ig, '">\\r\\n</span>');
// txt = txt.replace(/">\n\r<\/span>/ig, '">\\n\\r</span>');
// txt = txt.replace(/">\r<\/span>/ig, '">\\r</span>');
// txt = txt.replace(/">\n<\/span>/ig, '">\\n</span>');
// txt = txt.replace(/">\u001e<\/span>/ig, '">\\u001e</span>');
// txt = txt.replace(/">\u001f<\/span>/ig, '">\\u001f</span>');
//
return txt;
}
/**
* Parsing
*/
var res = Baby.parse("3,3,3");
Baby.parse("3,3,3", {
delimiter: ';',
comments: false,
step: function(results, p) {
p.abort();
results.data.length;
}
});
/**
* Unparsing
*/
Baby.unparse([{ a: 1, b: 1, c: 1 }]);