char charAt(int index)
返回指定索引处的char值
int codePoinAt(int index)
返回指定索引之前的字符(Unicode)
int compareTo(Sting anotherString)
按字典顺序比较两个字符串
int hashCode()
返回此字符串的哈希代码
in indexOf(int ch)
返回指定字符在此字符串中第一次出现处的索引
boolean matches(String regex)
通知此字符串是否匹配给定的正则表达式
String[]split(String regax,int limit)
根据匹配的正则表达式的匹配来拆分此字符串
char []toCharArray()
将此字符串转换为一个新的字符数组
String toString()
返回此对象本身(它已经是一个字符串!)
String trim()
返回字符串的副本,忽略前导空白格尾部空白
时间: 2024-11-06 01:29:03