1.获取字符串长度
int length();
2.获取指定位置上某个字符
char charAt(int index);
3.获取指定字符在字符串中位置
int indexOf(int ch);int indexOf(int ch, int fromIndex);int indexOf(String str);int indexOf(String str, int fromIndex);int lastIndexOf(int ch);
4.判断字符串中是否包含某一个子串
boolean contains(str);特殊之处:indexOf(str);if(str.indexOf("aa")!=-1)
5.判断字符串是否为空
boolean isEmpty():
6.判断字符串是否是以指定内容开头
boolean startsWith(str);
7.字符串是否是以指定内容结尾
boolean endsWith(str);
8.判断字符串内容是否相同。复写了Object类中的equals方法
boolean equals(str);
9.判断内容是否相同,并忽略大小写
boolean equalsIgnoreCase();
10.将字符数组转换成字符串
构造函数:String(char[])String(char[],offset,count);静态方法:static String copyValueOf(char[]);static String copyValueOf(char[] data, int offset, int count)static String valueOf(char[]):
11.将字符串转成字符数组
char[] toCharArray();
12.将字节数组转成字符串
String(byte[])String(byte[],offset,count):将字节数组中的一部分转成字符串。
13.将字符串转成字节数组
byte[]getBytes();
14.将基本数据类型转成字符串
static String valueOf(int)static String valueOf(double)String str = 123 + "";特殊:字符串和字节数组在转换过程中,是可以指定编码表的。
15. 替换指定字符
String replace(oldchar,newchar);
16.切割
String[] split(regex);
17.子串。获取字符串中的一部分
String substring(begin);String substring(begin,end);
18.将字符串转成大写或则小写
String toUpperCase();String toLowerCase();
19.将字符串两端的多个空格去除
String trim();
20.对两个字符串进行自然顺序的比较
int compareTo(string);
21.使用指定的格式字符串和参数返回格式化的字符串
static String format(String format, Object... args)