全文検索:
- 01 GAS 前月末/前月初日
- ====== 01 GAS 前月末/前月初日 ====== <code> var now = new Date(); var start_date = new Date(now.getFullYea... matDate(end_date, 'Asia/Tokyo', 'yyyy/MM/dd')); </code> ※getMonth()の戻り値は、0~11です。(0=1月、11=12月) ===== 結果
- 02 Javascritp正規表現で置換
- == 02 Javascritp正規表現で置換 ====== ===== 例1 ===== <code> var str = 'aaabbbaacc'; var reg = 'a'; var resul... new RegExp(reg,'g'), ''); console.log(result); </code> === 結果 === bbbcc ===== 例2 ===== var str
- 03 GAS Properties Service グローバル変数のように利用(永続化)
- 変更を保存しておくことができない。 このようにすると、永続化してカウントし続ける事ができます。 <code> var scriptProperties = PropertiesService.getScri... (){ var count = loadCount(); Logger.log('count ' + count); saveCount(count); } </code> {{tag>GAS}}
- 04 トリガーでExceeded maximum execution time対応
- untへ行数を保存しつつトリガーへ設定して実行させる。 設定したトリガーは5秒後に実行される。 <code> const ss = SpreadsheetApp.getActiveSpreadsheet()... unction() == 'runProccess'){ ScriptApp.deleteTrigger(trigger) } }); } </code> {{tag>GAS}}