java string和集合类有contains方法,可以判断集合或string内是否有该字符串
startsWith() 方法用于检测字符串是否以指定的前缀开始。
方法
public boolean startsWith(String prefix, int toffset)
public boolean startsWith(String prefix)
参数
-
prefix -- 前缀。
-
toffset -- 字符串中开始查找的位置。
indexof()
字符串String:
int indexOf(String str): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
int indexOf(String str, int fromIndex): 返回从 fromIndex 位置开始查找指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。
如果传入参数的值存在于字符串中就返回第一次出现的角标;没有则返回-1;
split(" ")方法,让字符串按空格分割,返回一个字符数组