按代码点从低到高排列标题?

时间:2018-01-25 11:40:49

标签: codepoint

我希望根据代码点从低到高来排列我的标题。以下是我的尝试,我想知道是否有人可以告诉我我是否已正确完成此操作。我基本上查找了ASCII图表(ASCII Chart)来手动执行此操作。

let source = { one: 1, two: 2, three: 3, four: 4 };
let {one, two, three: threeish, four, five} = source;
let dest = {
  one,
  two: 'alterTwo',
  threeish,
  five: five !== 'undefined'? five : 5
};

1 个答案:

答案 0 :(得分:0)

您需要排序标题。根据编程语言,这看起来不同,但关键词总是"排序"。

Java示例:

List<String> headers = Arrays.asList("Action", "X-Amz-Algorithm", "...");

headers.sort(Comparator.naturalOrder());