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に変えて 結果をログに出す
IssueTracker > Apps Script issues https://issuetracker.google.com/savedsearches/566234 Google Apps Scriptの障害時は IssueTracker に課題が上がっていることが...