0

通过表格捕获扩展,我已将网页中的 html 表格复制到谷歌电子表格中。在该表中, ex 有一列以小数表示:

12.4

我想把它改成

12:40:00

如果我通常替换.为,:那么它将替换为

12:04:00
4

1 回答 1

0

你应该试试Format=> Number=>Time

Tools您应该通过=>打开一个新脚本Script Editor并查看删除行的教程,您需要对其进行调整以更改行值你会在这里找到所有需要的文档

您的代码可能如下所示:

for each row{
    var string = new array(2);
    //Split the string a the .
    string = row.split(".");

    // if the second part is like 4 in 12.4 you set it to 40
    if (string[1].lenght() == 1)
        string[1] += 0;

    // Set the row value to the format you like, here : 12:40:00
    row.setValue(string[0] + ":" + string[1] + ":00");
}
于 2013-06-25T06:53:41.730 回答