NamingCase.toCamelCase新增重载,可选是否转换其他字符为小写

This commit is contained in:
Looly 2023-03-31 13:40:46 +08:00
parent b167fa1d16
commit 8420a9b0a1
3 changed files with 18 additions and 2 deletions

View File

@ -10,6 +10,7 @@
* 【core 】 完善HttpStatus参考相关规范补全缺失的状态码pr#968@Gitee
* 【core 】 NumberUtil增加pr#968@Gitee
* 【core 】 Number128增加hash和equals方法pr#968@Gitee
* 【core 】 NamingCase.toCamelCase新增重载可选是否转换其他字符为小写issue#3031@ithub
### 🐞Bug修复
* 【core 】 CollUtil.split优化切割列表参数判断避免OOMpr#3026@Github

View File

@ -162,6 +162,18 @@ public class NamingCase {
* @since 5.7.17
*/
public static String toCamelCase(CharSequence name, char symbol) {
return toCamelCase(name, symbol, true);
}
/**
* 将连接符方式命名的字符串转换为驼峰式如果转换前的下划线大写方式命名的字符串为空则返回空字符串
*
* @param name 转换前的自定义方式命名的字符串
* @param symbol 原字符串中的连接符连接符
* @param otherCharToLower 其他非连接符后的字符是否需要转为小写
* @return 转换后的驼峰式命名的字符串
*/
public static String toCamelCase(CharSequence name, char symbol, boolean otherCharToLower) {
if (null == name) {
return null;
}
@ -180,7 +192,7 @@ public class NamingCase {
sb.append(Character.toUpperCase(c));
upperCase = false;
} else {
sb.append(Character.toLowerCase(c));
sb.append(otherCharToLower ? Character.toLowerCase(c) : c);
}
}
return sb.toString();

View File

@ -45,7 +45,10 @@ public class NamingCaseTest {
@Test
public void issue3031Test() {
final String camelCase = NamingCase.toCamelCase("user_name,BIRTHDAY");
String camelCase = NamingCase.toCamelCase("user_name,BIRTHDAY");
Assert.assertEquals("userName,birthday", camelCase);
camelCase = NamingCase.toCamelCase("user_name,BIRTHDAY", '_', false);
Assert.assertEquals("userName,BIRTHDAY", camelCase);
}
}