I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
function myFunction() { for(var i = 0; i < 10; i++){ Logger.log(i); } }
この機能がやること iが0から10(未満)になるまで繰り返す iをログに出す
Introduction Regular expressions are a powerful tool that can be used to extract data from text. In Google Sheets, regular expressions ca...