移動先: 概要 戻り値 MEL の例

概要

sort any[]

sort は「元に戻す」が不可能「照会」が不可能「編集」が不可能です。

元の配列の要素が昇順で格納されている配列を返します。

戻り値

any[]エレメントの型と個数が元の引数と同じ配列。

MEL の例

ls -dag ;
// Result: top topShape front frontShape side sideShape //

$mySortedList=sort(`ls -dag`);
// Result: front frontShape side sideShape top topShape  //

$listOfFloats={42.42, 1.2, 8.4, -3.4, -100};
$listOfFloats = `sort $listOfFloats`;
// Result: -100 -3.4 1.2 8.4 42.42 //

print $listOfFloats;
// -100
// -3.4
// 1.2
// 8.4
// 42.42