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に変えて 結果をログに出す
質問や選択肢をシャッフルする方法ついては以下のリンク先に書きました Google Formsで質問の順番をシャッフルしたい(setShuffleQuestions) Google Formsで選択肢の順番を毎回シャッフルしたい(UI設定のみ) Google Formsで選択肢の順...