toLowerCase

種類メソッド
書式 文字列.toLowerCase()
解説
英大文字を英小文字に変換します。
サンプルコード
str = "Amiga";
outputs[0] = str.toLowerCase();
実際のスクリプトをダウンロード