方法名

用途



public int length()

获取字符串当中含有的字符个数 拿到字符串长度

public String concat(String str)

将当前字符串和参数字符串拼接成为返回值新的字符串

public char charAt(int index)

获取指定索引位置的单个字符(索引从零开始)

public int indexOf(String str)

获取参数字符串在本字符当中首次出现的索引位置 如果没有 返回值为-1



public String substring(int index)

截取从参数位置一直到字符串末尾 返回新字符串

public String subString(int begin,int end)

截取从begin开始,一直到end结束 中间的字符串:[begin,end)



blic char[] toCharArray()

将当前字符串拆分为字符数组作为返回值

public byte[] getBytes()

获取当前字符串底层字节数组

public String replace(charSequence oldString,charSequence newString)

将所有出现的老字符串替换成新的字符串 返回替换之后的结果新字符串



public String[] split(String regex)

按照参数规则 将字符串切分成为若干部分