我来自 VBA 背景,我找到了这个网站
http://excelramblings.blogspot.co.uk/2012/05/google-apps-script-equivalents-for.html
由 Bruce Mcpherson 提供的许多现成的功能非常有用,可用于复制和粘贴到您的 Google App 脚本中,尤其是在您从 Excel 电子表格转换为 Google 电子表格时。
左的布鲁斯代码:
function Left(str,optLen) {
return Mid( str, 1 , optLen);
}
要使用上述 LEFT 功能,您还需要 Bruces Mid 功能:
function Mid (str,optStart,optLen) {
var start = IsMissing (optStart) ? 0 : optStart - 1;
var length = IsMissing (optLen) ? Len(str) - start + 1 : optLen ;
DebugAssert( str.slice, str + ' is not a valid string for Mid function');
return str.slice ( start, start + length);