equals(Object anObject)
将此字符串与指定的对象比较。
boolean
equalsIgnoreCase(String anotherString)
将此 String 与另一个 String 比较,不考虑大小写。
byte[]
getBytes(String charsetName)
使用指定的字符集将此 String 编码为 byte 序列,并将结果存储到一个新的 byte 数组中。
int
hashCode()
返回此字符串的哈希码。
int
indexOf(int ch)
返回指定字符在此字符串中第一次出现处的索引
int
int
indexOf(String str,
int fromIndex)
返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始。
boolean
int
lastIndexOf(int ch)
返回指定字符在此字符串中最后一次出现处的索引。
int
lastIndexOf(int ch,
int fromIndex)
返回指定字符在此字符串中最后一次出现处的索引,从指定的索引处开始进行反向搜索。
int
lastIndexOf(String str)
返回指定子字符串在此字符串中最右边出现处的索引。
int
lastIndexOf(String str,
int fromIndex)
返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索。
int
length()
返回此字符串的长度。
boolean
replace(char oldChar,
char newChar)
返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。
replace(CharSequence target,
CharSequence replacement)
使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。
replaceAll(String regex,
String replacement)
使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。