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]);
}
}
相关文章
- 01-30Linq List
- 01-30C++中int转为char 以及int 转为string和string 转int和空格分隔字符串
- 01-30Syntax Error: Error: PostCSS received undefined instead of CSS string
- 01-30[vue-router] route config "component" for path:canot be a string id. Use an actual compone
- 01-30Leetcode: Backspace String Compare
- 01-30MFC中char*,string和CString之间的转换(待补充)
- 01-30String类实现
- 01-30String类的写法
- 01-30字符串类 class string
- 01-30【每日一题】Leetcode - 面试题 01.06. Compress String LCCI(字符串压缩)