“Sortieren Sie eine Reihe von Saiten” Code-Antworten

JavaScript sortieren Sie alphabetisch

var items = ['réservé', 'premier', 'communiqué', 'café', 'adieu', 'éclair'];
items.sort(function (a, b) {
  return a.localeCompare(b); //using String.prototype.localCompare()
});

// items is ['adieu', 'café', 'communiqué', 'éclair', 'premier', 'réservé']
Victor Grk

Sortieren Sie einen String -Array -Java

String[] myArray = {"JavaFX", "HBase", "OpenCV", "Java", "Hadoop","Neo4j"};
Arrays.sort(myArray);
System.out.println(Arrays.toString(myArray));
Handsome Hippopotamus

Sortieren Sie eine Reihe von Saiten

/* names of illnesses are written in order of 
how patients have arrived. Let's sort them in alphabetical order. */


const diseases = [
    "Mysophobia",
    "Fear of missing out",
    "Erythrophobia"
];

diseases.sort(function(a, b) {
  /* let's convert the strings to lowercase
  to ensure the comparison works */ 
  a = a.toLowerCase();
  b = b.toLowerCase();

    if (a < b) return -1; // a will come before b
    if (b < a) return 1; // b will come before a

  return 0;
});

console.log(diseases);

/* ["Erythrophobia","Fear of missing out", "Mysophobia"] */ 
Cruel Cormorant

Sortierfunktion erklärte JavaScript

var sortedArray = myArray.sort(function(a,b){
                                   if (a.name < b.name)
                                      return -1;
                                   else if (a.name == b.name)
                                      return 0;
                                   else
                                      return 1;
                               });
Defiant Dormouse

Ähnliche Antworten wie “Sortieren Sie eine Reihe von Saiten”

Fragen ähnlich wie “Sortieren Sie eine Reihe von Saiten”

Weitere verwandte Antworten zu “Sortieren Sie eine Reihe von Saiten” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen