ツール 大文字←→小文字変換WEBツール
INPUTに入力した英語を自動的に変換してOUTPUTに出力します。小文字から大文字に変換する場合は下のチェックボックスを変更してください。 小文字→大文字 大文字→小文字 INPUT:OUTPUT:document.getElementById("input").addEventListener('input', ()=>{if (document.getElementById("ltou").checked) { document.getElementById("output").value = document.getElementById("input").value.toUpperC...