String常用方法Collection接口常用方法
增:
boolean add(E e);添加一个数据到集合中
boolean addAll(Collection<? extends E> c); 将一个集合数据添加到另外一个集合中
Collection<? extends E>:元素 是E本类或者继承的E,才能添加到另外一个集合中
删:
boolean remove(Object obj);删除指定的元素
boolean removeAll(Collection<? extends E> c); 删除的是交集
[a,b,c] [b, c, d]
void clear();清空的
查:
int size(); 查看集合中元素的个数
Object[] toArray(); 将集合转为Object类型数组
boolean contains(Object obj); 集合中是否包含这个元素 如果包含返回true
boolean containsAll(Collection<? extends E> c);一个集合是否另外一个集合子集合
boolean isEmpty(); 判断集合是否为空
boolean equals(Object obj); 判断字符串的内容是否相等。
int length(); 获取字符串长度
char charAt(int index); 通过索引下标 获取当前下标的字符
int indexOf (String str);获取指定的字符第一个出现索引下标
int lastIndexOf(int ch);获取指定的字符最后一次出现索引下标
boolean endWith(String str);判断是否是以指定的字符或者字符串结尾的
boolean isEmpty(); 判断字符串是否为空
boolean contains(String str); 在一个字符串中是否包含另外一个字符串啊
boolean equalsIgnoreCase();忽略大小写比较字符串的是否相等
String(char[] ch);
static String valueOf(char[] chs);将字符数组转为字符串。静态的方法【重点】
valueOf方法的重载很多。一定要记住将八大基本数据类型转为字符串
将字符串转为字符数组
char[] tocharArray();将字符串转为字符数组【重点】
开发要用的方法
String replace(char oldChar, char newChar);在字符串中用新的字符替换老的字符
String[] split(String regex); 以指定的字符串进行切割
String subString(int beginIndex);从指定的位置开始截取字符串
String subString(int beginIndex, int endIndex);从指定的位置开始截取字符串到指定的位置结束
String toUpperCase();将小写字符转为大写的
String toLowerCase();将小写字符转为大写的
String trim();去掉首尾空格