「Google Apps Script」toLowerCaseで英字の大文字を小文字にする
構文
対象文字列.toLowerCase()
toLowerCaseメソッドを利用して、英字の大文字を小文字にします。
使用例
function myFunction() { const strA = "ARKGAME"; console.log(strA.toLowerCase()); const strB = "Study"; console.log(strB.toLowerCase()); const strC = "テスト"; console.log(strC.toLowerCase()); }
実行結果
arkgame
study
テスト