希望我可以从中获得一些建议。我正在使用脚本来自动创建文档,其中数据来自现有的google文档。在不使用链接表的情况下,我试图在文档中搜索文本所标识的位置插入一个表。
例如,我将在文档中搜索TABLE1HERE并将其替换为[[Heading,Data],[Heading2,MoreData]]
定义的表。我试过下面的代码和一些没有运气的变化。任何指针将是非常美妙。
function updateTablesTEST(searchText,replacementTable){
var document = DocumentApp.getActiveDocument();
var documentBody = document.getBody();
var textLocation;
var newPosition;
var textChild;
textLocation = documentBody.findText(searchText).getElement();
textChild = textLocation.getParent().getChildIndex(textLocation);
documentBody.insertTable(textChild+1, replacementTable);
}
答案 0 :(得分:1)
用表格替换文本
这将找到包含所需文本的容器的childIndex。它将删除文本并将表插入同一子项。
function searchTextReplTable(texttofind){
var doc=DocumentApp.getActiveDocument();
var body=doc.getBody();
var rgel=body.findText(texttofind);
var element=rgel.getElement();
var childIndex=body.getChildIndex(element.getParent());
var t=[];//This is the table I used
for(var i=0;i<5;i++){//just created a 5,5 table with row, col indices
t[i]=[];
for(var j=0;j<5;j++){
t[i][j]=Utilities.formatString('%s,%s',i,j);
}
}
body.getChild(childIndex).asText().setText('');
body.insertTable(childIndex,t)
}