黑马程序员技术交流社区

标题: 分享 字符串首字母转大写 [打印本页]

作者: Fate_stay    时间: 2016-9-26 23:49
标题: 分享 字符串首字母转大写
/**
* 1.将"goOd gooD stUdy dAy dAy up"每个单词的首字母转换成大写其余还是小写字母
* (不许直接输出good good study day day up 要用代码实现)
*/
public class Prictice9_1 {
        public static void main(String[] args) {
                String str = "goOd gooD stUdy dAy dAy up";
                String[] split = str.split(" +");
               
                // 创建StringBuilder对象
                StringBuilder sb = new StringBuilder();
                for(int i = 0; i < split.length; i++) {
                        String new_str = split[i];
                        // 使用substring截取首字符,将其转换成大写
                        String head = new_str.substring(0, 1).toUpperCase();
                        // 截取除首字母以外的字符串,将其转换成小写
                        String end = new_str.substring(1).toLowerCase();
                        // 将头和尾拼接上
                        sb.append(head).append(end).append(" ");
                }
                System.out.println(sb);
        }

}



作者: 爱你一万年    时间: 2016-9-26 23:54
ZANYIGE赞YIGE
作者: 梦想工程师    时间: 2016-9-26 23:59
word里面实现是用这个实现的吗?感觉用处不打




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2