how do I sort a dictionary by key like
dict["word_21"] = "Hello Java";
dict["word_22"] = "Hello World";
dict["word_11"] = "Hello Javascript";
so that I get
dict["word_22"] = "Hello World";
dict["word_21"] = "Hello Java";
dict["word_11"] = "Hello Javascript";
There are word_number combinations on indices only and the values are strings. The indices are distinct (no equal values) but could be "undefined" in an error case
Edit: Actually I need the descending and ascending order of it. But the descending order is what I need at the moment.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…