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

将"goOd gooD stUdy dAy dAy up"每个单词的首字母转换成大写其余还是小写字母

时间:2018-08-03 16:31:47      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:length   ring   转换   main   class   str   static   and   ase   

public class zuoye2 {
    public static void main(String[] args) {
        String str = "goOd gooD stUdy dAy dAy up";
        str = convertStandard(str);
        System.out.println(str);
 
    }
 
    private static String convertStandard(String str) {
        String strStandard = "";
        String[] strs = str.split(" ");
        for(String s : strs){
            s = s.toLowerCase();
            String first = s.substring(0, 1).toUpperCase();
            s = first + s.substring(1, s.length());
            strStandard = strStandard + s + " ";
        }        
        return strStandard;
    }
}

 

将"goOd gooD stUdy dAy dAy up"每个单词的首字母转换成大写其余还是小写字母

标签:length   ring   转换   main   class   str   static   and   ase   

原文地址:https://www.cnblogs.com/a709898670/p/9414452.html

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