Java将驼峰命名转化为下划线命名
public static String convertToUnderscore(String camelCase) {
return camelCase.replaceAll(
"([a-z])([A-Z]+)",
"$1_$2"
).toLowerCase();
}
public static void main(String[] args) {
String camelCase = "ktCollectType";
String underscore = convertToUnderscore(camelCase);
System.out.println(underscore); // 输出: kt_collect_type
}
原文地址:https://blog.csdn.net/mtingh/article/details/142596126
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!