関数

文字列並べ替え

文字列を文字コード順に並べ替えます。
→文字列の並べ替えはこちら
文字列並べ替え
文字列逆順並べ替え
文字列ランダム並べ替え


ソースコード公開

<form>
<textarea id="before" placeholder="おいうえあ"></textarea>
<textarea id="after" placeholder="あいうえお" readonly></textarea>
</form>
<script>
const before = document.getElementById('before');
before.addEventListener('click', function() {
  let after = this.value.split('').sort().join('');
  document.getElementById('after').value = after;
});
</script>



コメント