降順で並び替え

提供:MeryWiki
2012年6月22日 (金) 19:12時点におけるAdmin (トーク | 投稿記録)による版
ナビゲーションに移動 検索に移動

編集中の文書の行を降順で並べ替えます。

// -----------------------------------------------------------------------------
// 降順で並べ替え
//
// Copyright (c) Kuro. All Rights Reserved.
// www:    http://www.haijin-boys.com/
// -----------------------------------------------------------------------------

if (document.selection.Text == "")
  document.selection.SelectAll();
document.selection.Text = document.selection.Text.split("\n").sort(
  function(a, b) {
    return ((a < b) ? 1 : ((a > b) ? -1 : 0));
  }
).join("\n");
document.selection.StartOfDocument();
スポンサーリンク