java中常用的包、类、以及包中常用的类、方法、属性----lang包 (3)

equals(Object anObject)
          将此字符串与指定的对象比较。

 

boolean

 

equalsIgnoreCase(String anotherString)
          将此 String 与另一个 String 比较,不考虑大小写。

 

byte[]

 

getBytes(String charsetName)
          使用指定的字符集将此 String 编码为 byte 序列,并将结果存储到一个新的 byte 数组中。

 

int

 

hashCode()
          返回此字符串的哈希码。

 

int

 

indexOf(int ch)
          返回指定字符在此字符串中第一次出现处的索引

 

int

 

indexOf(String str)
          返回指定子字符串在此字符串中第一次出现处的索引。

 

int

 

indexOf(String str, int fromIndex)
          返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始。

 

boolean

 

isEmpty()
          当且仅当 length() 为 0 时返回 true。

 

int

 

lastIndexOf(int ch)
          返回指定字符在此字符串中最后一次出现处的索引。

 

int

 

lastIndexOf(int ch, int fromIndex)
          返回指定字符在此字符串中最后一次出现处的索引,从指定的索引处开始进行反向搜索。

 

int

 

lastIndexOf(String str)
          返回指定子字符串在此字符串中最右边出现处的索引。

 

int

 

lastIndexOf(String str, int fromIndex)
          返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索。

 

int

 

length()
          返回此字符串的长度。

 

boolean

 

matches(String regex)
          告知此字符串是否匹配给定的正则表达式

 
 

String

 

replace(char oldChar, char newChar)
          返回一个新的字符串,它是通过用 newChar 替换此字符串中出现的所有 oldChar 得到的。

 
 

String

 

replace(CharSequence target, CharSequence replacement)
          使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串。

 
 

String

 

replaceAll(String regex, String replacement)
          使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。

 
 

String

 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzxgfg.html