有没有办法使用Google脚本将表格从Google文档复制到电子表格文档?谢谢。 为了恢复,我在stackoverflow帖子中找到了这个功能
var doc=DocumentApp.getActiveDocument();
var body=doc.getBody();
if(body)
{
var numChildren=body.getNumChildren();
for(var i=0;i<numChildren;i++)
{
var child=body.getChild(i);
if(child.getType()==DocumentApp.ElementType.TABLE)
{
var numrows = child.asTable().getNumRows();
for(var j=0;j<numrows;j++)
{
var numcells=child.asTable().getRow(j).getNumCells();
for(var k=0;k<numcells;k++)
{
var celltxt=child.asTable().getCell(j, k).editAsText().getText();
但要在电子表格中导出后我被阻止:(如果你有想法