2018-12-05

字符串



String s;

s="hrrp://www.niit.edu.cn:8080";

System.out.println(s.length());     //输出s的长度

System.out.println(s.charAt(3)); //输出第四个位置的字符

System.out.println(s.indexOf("abc"));  //判断abc在不在s里 不在则输出-1

System.out.println(s.startsWith("n"));

System.out.println(s.endWith(3));

System.out.println(s.charAt(3));

System.out.println(s.substring(8,15));// 打印第9到16位置的字符

System.out.println(s.replace("a","b"));// 把s中的a改成b

s.replace("a","b");

String s2[]=s.split(",");  //每隔一个“,” 分成一个数组 这是分隔符

System.out.println(s.replace(" ","");//消除所有空格

判断相等用equals

如System.out.println(s4==s5);//显然相等的两个数 双等于号可能显示错位

但括号内换成s4.equals(s5)  //就会正确

你可能感兴趣的:(2018-12-05)