|
@@ -1,6 +1,10 @@
|
|
|
package com.enteprise.util;
|
|
|
|
|
|
+import com.enteprise.enterprise.dto.EnterpriseDto;
|
|
|
+
|
|
|
import java.util.ArrayList;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.Comparator;
|
|
|
import java.util.List;
|
|
|
|
|
|
public class CommonUtil {
|
|
@@ -25,4 +29,24 @@ public class CommonUtil {
|
|
|
|
|
|
return list;
|
|
|
}
|
|
|
+
|
|
|
+ public static List<EnterpriseDto> sortByNumberInName(List<EnterpriseDto> list) {
|
|
|
+ List<EnterpriseDto> newList = new ArrayList<>(list);
|
|
|
+ newList.sort(new Comparator<EnterpriseDto>() {
|
|
|
+ @Override
|
|
|
+ public int compare(EnterpriseDto a1, EnterpriseDto a2) {
|
|
|
+ int num1 = extractNumber(a1.getEnterpriseName());
|
|
|
+ int num2 = extractNumber(a2.getEnterpriseName());
|
|
|
+ return Integer.compare(num1, num2);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return newList;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 从名称中提取数字的方法
|
|
|
+ private static int extractNumber(String name) {
|
|
|
+ // 使用正则表达式提取出字符串中的数字部分
|
|
|
+ String numberPart = name.replaceAll("\\D+", ""); // 去掉非数字字符
|
|
|
+ return Integer.parseInt(numberPart.isEmpty() ? "0" : numberPart); // 转换为整数,默认返回 0
|
|
|
+ }
|
|
|
}
|