我有一个方案来排序基于值的域类属性。此属性可以包含格式为XXX-1的所有数字和字母数字值。
def res= Book.listOrderByName()
或
def res = Book.findAll("from Book order by name")
给出相同的结果和结果是显示后面的字母数字值的第一个数字。 我的问题是: 这些值在 - 之前排序。 例如,我有AB-1,AB-2,...... AB-12。
结果显示为AB-1,AB-10.AB-11,AB-2,AB-3,... AB-9
我的结果如下:
[18001,18002,2,300,3901,42,9,AB-1,AB-10,AB-2,AB-21,AB-9]
它应将值显示为:
[2,9,42,300,3901,18001,18002,AB-1,AB-2,AB-9,AB-10,AB-21]
答案 0 :(得分:7)
List sort(list) {
list.sort {a, b ->
a.class == b.class ? a <=> b : a instanceof Integer ? -1 : 1
}
}
// Test the sort function
def list = [18001,18002,2,300,3901,42,9,'AB-1','AB-10','AB-2','AB-21','AB-9']
assert sort(list) == [2, 9, 42, 300, 3901, 18001, 18002, 'AB-1', 'AB-10', 'AB-2', 'AB-21', 'AB-9']