Google Apps Script(GAS)【Google Apps Script(GAS)】アクティブシートの取得、セル番地の取得と文字の入力 今回は、Google Apps Scriptにおけるアクティブシートやアクティブセルの取得方法や、文字入力の方法についてご紹介します。 アクティブシートの取得 アクティブシートの取得は下記スクリプトで行う事ができます。 S... 2023.03.19Google Apps Script(GAS)スプレッドシート(Google Apps Script・GAS)セル操作(Google Apps Script・GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】文字や書式のクリア Google Apps Scriptにおいては、スプレッドシート上の文字や書式のクリアの仕方にも様々な方法があります。 そこで、今回はスプレッドシート上の文字や書式のクリア方法についてご紹介します。 文字や書式のクリア方法 ... 2023.03.19Google Apps Script(GAS)セル操作(Google Apps Script・GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】スプレッドシートのセルに入力されている値を取得する(getValue、getValues) 今回はGoogle Apps Scriptにおける、スプレッドシートの単一セルに入力されている値の取得方法(getValue)と、セル範囲に入力されている値の取得方法(getValues)についてご紹介します。 単一セルに入力され... 2023.03.19Google Apps Script(GAS)セル操作(Google Apps Script・GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】文字列の置換と削除(replace) エクセルやスプレッドシートにおいては文字列の削除や置換は頻繁に使われます。 そこで今回はGoogle Apps Scriptにおける、文字列の置換や削除方法についてご紹介します。 文字列の置換 Google Apps Scri... 2023.03.19Google Apps Script(GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】文字列の結合 今回はGoogle Apps Scriptにおける文字列の結合や、注意点についてご紹介します。 文字列の結合方法 Google Apps Scriptにおいて文字列同士を結合する場合、文字列と文字列を「+」で結ぶ事により、結合で... 2023.03.19Google Apps Script(GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】splitで文字列を区切る1 今回はGoogle Apps Scriptで文字列を区切る方法(区切り位置)についてご紹介します。 今回の例を読み進めるにあたり、配列についてある程度理解している必要がありますのでご注意ください。 splitで文字列を区... 2023.03.19Google Apps Script(GAS)プログラミング文字列操作(Google Apps Script・GAS)配列(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】splitで文字列を区切る2(lengthで配列数を調べる) 今回は前回の記事の続きです。 前回のサンプル1では事前に配列の数が分かっていましたが、このままでは文字列を区切った後の配列数が事前に分からない場合に対処する事ができません。 そこで今回は、文字列を区切った後の配列数が... 2023.03.19Google Apps Script(GAS)プログラミング文字列操作(Google Apps Script・GAS)配列(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】sliceで文字列から文字を切り出す Google Apps Scriptでは色々な方法で文字列から文字を切り出すして取得する事ができますが、今回はsliceを使って文字列から文字を切り出す方法についてご紹介します。 sliceで文字列から文字を切り出す まず、sl... 2023.03.19Google Apps Script(GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】文字のサイズ、スタイル、色、太さ、斜体、位置や、セルの色や罫線の設定 今回はGoogle Apps Scriptで、スプレッドシート上の文字のサイズ、スタイル、色、太さ、斜体、位置や、セルの色や罫線の設定についてご紹介します。 フォント関連のスクリプト フォントサイズの設定 setFontSiz... 2023.03.19Google Apps Script(GAS)スプレッドシート(Google Apps Script・GAS)セル操作(Google Apps Script・GAS)プログラミング文字列操作(Google Apps Script・GAS)
Google Apps Script(GAS)【Google Apps Script(GAS)】文字列を含んでいるか調べる 今回は、Google Apps Scriptで任意の文字列を含んでいるかどうかを調べる方法についてご紹介します。 Google Apps Scriptでスプレッドシートを操作する際、文字列を含んでいるかどうかで処理を分岐させた... 2023.03.19Google Apps Script(GAS)プログラミング文字列操作(Google Apps Script・GAS)