码迷,mamicode.com
首页 > 其他好文 > 详细

大写加下划线转化成小写驼峰形式

时间:2020-01-19 16:32:09      阅读:633      评论:0      收藏:0      [点我收藏+]

标签:upper   for   style   多个   uppercase   tput   length   res   list   

例如把RESULT_LIST转化成resultList字符串

第一:通过input.toLowerCase().split(spliter)用‘_’把字符串分割成多个小写字母的数组。

第二:把第一个数组以外的数组首字母变大写。

第三:通过append()拼接字符串。

 1 //型如XXX_YYY_ZZZ的子串改为xxxYyyZxx的子串
 2     private static String slashToFirstLetterUpper(String input) {
 3         String spliter = "_";
 4         StringBuffer output = new StringBuffer();
 5         String[] words = input.toLowerCase().split(spliter);
 6         for (int i = 0; i < words.length; i++) {
 7             if (i != 0) {
 8                 output.append(fistLetterToUpper(words[i]));
 9             }
10             else {
11                 output.append(words[i]);
12             }
13         }
14 
15         return output.toString();
16     }
17 
18     private static String fistLetterToUpper(String input) {
19         if (input == null)
20             return "";
21         if (input.length() <= 0)
22             return "";
23 
24         return input.substring(0, 1).toUpperCase() + input.substring(1);
25     }

大写加下划线转化成小写驼峰形式

标签:upper   for   style   多个   uppercase   tput   length   res   list   

原文地址:https://www.cnblogs.com/whluan/p/12214414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!