zoukankan      html  css  js  c++  java
  • 字符串大小写转换 更改字符串 去掉前后空格

    public class Homework {

        public static void main(String[] args) throws ParseException {
        
          
                lower();    全部调用


                upper();


                repalce();


                repalce1();


                trim();

          public static void  trim(){

    //  String trim(): 去掉字符串两端空格


                    String s="   hello    ";  //定义字符串两端加空格


                    System.out.println(s);  //打印一次


                    String s1=s.trim();  //去掉两端空格


                    System.out.println(s1);  //打印取掉以后的值
        }

    //    String repalce(String old, String newstr): 将字符串中的老字符串,替换为新字符串


                public static void repalce1(){


                   String s="old";  //定义字符串


                    String s1=s.replace("old","newstr");    //把old 替换成 newStr


                    System.out.println(s1);    //打印
        }

    //    String repalce(char oldChar, char newChar): 将字符串中的老字符,替换为新字符


              private static void repalce() {

      
                String s="oldChar";    //定义字符串
            
                  String s1=s.replace("old","new" );  //把old转化成new后面不变


                  System.out.println(s1);
        }



              private static void upper() {

    //    String toUpperCase(): 字符串转成大写


              String s="hello";  // 定义字符串


              String s1=s.toUpperCase();  //把字符串转换成大写


              System.out.println(s1);  //打印
        }


          private static void lower() {
       //      String toLowerCase(): 字符串转成小写


                String S="HELLO";  //定义大写字符串


                String s1=S.toLowerCase();    //把字符串转化成小写


                System.out.println(s1);      //打印
            
        }

      
      
        }

  • 相关阅读:
    Core Foundation 框架
    iOS下微信语音播放之切换听筒和扬声器的方法解决方案
    http://blog.sina.com.cn/s/blog_6f40a0e70100p98l.html
    web移动开发最佳实践之js篇
    iOS框架介绍(五)Core Services 层
    针式PKM V9.36 最新版(2012_03_29)
    通过10000个小时的个人知识管理,将自己的智慧潜力挖掘出来
    下载 针式PKM V9.08 版
    如何避免重复造轮子问题?
    和evernote比 针式PKM有什么特色?
  • 原文地址:https://www.cnblogs.com/hph1728390/p/10561764.html
Copyright © 2011-2022 走看看