字符串的常用方法:
1,求字符串的长度
String s = "Hello world!";
int len = s.length();
2.获取字符串中指定位置的字符
s.charAt(0); 这样会得到 H 字符
3.字符串的拼接
s.concat("Hello China"); 相当于 "Hello world!" + "Hello China"
4.字符串转小写 toLowerCase()
5.字符串转大写toUpperCase()
6.字符串替换s.replace("Hello", "Hi")
7.字符串去除首尾空格 s.trim()
8.字符串是否是以指定的字符串开头
s.statWith("Hello");
9.字符串是否是以指定的字符结尾
s.endWith("world");
10. 字符串中是否包含指定字符
s.contains("H")
11.字符串按照指定的字符分割
s.split()