如何使用Google表格API插入换行符?

时间:2014-04-09 18:44:23

标签: javascript unicode google-sheets spreadsheet google-spreadsheet-api

我正在尝试在Google工作表中使用换行符。

如果我想要一个细胞来表明这一点:

通过


我在set.Value()方法中放了什么?

我正在尝试这个:

function myFunction(cell){
  cell.setValue('Over
                 Under')
  }

不起作用....

更新 我也试过这个

cell.setValue(otherCell.getValue());

只要 otherCell 是我想要的值,这似乎就有效。我不知道如何检查这个元素。

编辑: 我添加了unicode和js标签,因为解决方案与google工作表有更多关系。

2 个答案:

答案 0 :(得分:3)

我一直在使用" \ n",将新行插入文本单元格。

,例如:

cell.setValue("Over"+"\n"+"Under");

收率:

超过

对于附加单元格内容的情况,它非常适用:

cell.setValue(cell.getValue()+"\n"+"Updated info");

答案 1 :(得分:0)

我通过使用 String.charCodeAt()来解决这个问题,似乎'换行符'的unicode值为10.

cell.setValue('Over'+String.fromCharCode(10)+'Under') 

使用

生成单个单元格

通过