I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
function replace_first_letter(){ var str = "abc"; var result = str.replace(/^./, "x"); Logger.log(result); }
この機能がやること 文字列 先頭の1文字をxに変えて 結果をログに出す
Introduction This article will show you a template copier application in Google Apps Script. This application will automatically copy a t...