码迷,mamicode.com
首页 > 编程语言 > 详细

Java 实例 - 字符串小写转大写

时间:2018-03-03 15:35:23      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:http   png   ack   sea   div   world   inf   字符   body   

package string;

public class toUpperCaseAndtoLowerCase {
    public static void main(String[] args) {
        /**
         * 字符串的大小写转换
         */
        String str = "hello World";
        String strUppercase = str.toUpperCase();// 转换成大写
        System.out.println(strUppercase);
        String strlow = str.toLowerCase();// 转换成小写
        System.out.println(strlow);
    }

}

输出结果技术分享图片

 

Java 实例 - 字符串小写转大写

标签:http   png   ack   sea   div   world   inf   字符   body   

原文地址:https://www.cnblogs.com/zhuxiaopang/p/8496402.html

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