Go to: Synopsis. Return value. Keywords. MEL examples.
sortCaseInsensitive
sortCaseInsensitive is NOT undoable, NOT queryable, and NOT editable.
This command sorts all the strings of an array in a case insensitive way.| string[] | string to sort |
$stringToSort = {"bcd", "Def", "abC"};
$sortedString = `sortCaseInsensitive $stringToSort`;
// Result : "abC", "bcd", "Def"