String

public class demo01 {
 
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        //.length() 字符串的长度
        String a="JAVA";
        System.out.println(a.length());
        System.out.println("=====");
        //.charAt() 截取字符;
        char b=a.charAt(0);//截取第一位
        System.out.println(b);
        System.out.println("=====");
        for (int i = 0; i < a.length(); i++) {
            System.out.println(a.charAt(i));//逐一截取输出
        }
        System.out.println("=====");
        //.getChars() 截取多个字符并由其它字符串接收 
        char[] a1=new char[4];
        a.getChars(0, 2, a1, 1);//getChars(a的开始位,截取a的位数,接收的名,该名的第几位开始)
        System.out.println(a1);
        System.out.println("=====");
        //.equals() .equalsIgnoreCase 比较两个字符串是否相等   结果是Boolean值   前者区分大小写,后者不区分大小写
        String c="JAVA";
        String c1="java";
        System.out.println(c.equals(c1));//区分大小写
        System.out.println(c.equalsIgnoreCase(c1));//不区分大小写
        System.out.println("=====");
        //.toLowercase() 小写字母转换  .toUppercase()  大写字母转换  
        System.out.println(c.toLowerCase().equals(c1.toUpperCase()));
        System.out.println("=====");
        //.concat() 连接字符串  .trim()  去掉开始和结束的空格 
        String d="hello";
        String d1=" hello ";
        System.out.println(d.concat(d1));
        System.out.println(d.concat(d1.trim()));
        System.out.println("=====");
        //.substring() 字符串截取  
        String e="hello";
        System.out.println(e.substring(1));//ello  .substring(开始位到最后) 
        System.out.println(e.substring(1,2));//e  .substring(开始位,到结束位(不包括结束位))
        System.out.println("=====");
        //.indexof(" ") 正着数的位数  .lastIndexof(" ")倒着数的位数
        String e1="hello";
        System.out.println(e1.indexOf("h"));//0
        System.out.println(e1.indexOf("hell"));//0 结果以第一个位数位准
        System.out.println(e1.lastIndexOf("o"));//4
        System.out.println("=====");
        //.split() 返回是一个数组 
        String[] e2=e1.split(" ");
            System.out.println(e2[0]);
    }
 
}
 

上一篇:UltraEdit的配置


下一篇:sql数据同步_sql数据同步软件_sql数据库同步