如何获取Monaco Editor行数组? 我正在阅读文档,了解如何获取字符串值,但是需要遍历每行并映射值。
答案 0 :(得分:0)
类似的东西吗?
// let editor1 = monaco.editor.create( ...
let model = editor1.getModel();
for (let i = 0; i < model.getLineCount(); i++) {
let line = model.getLineContent(i);
// do something
}