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

replaceFirst(String regex, String replacement)
          使用给定的 replacement 替换此字符串匹配给定的正则表达式的第一个子字符串。

 
 

String[]

 

split(String regex)
          根据给定正则表达式的匹配拆分此字符串。

 
 

String[]

 

split(String regex, int limit)
          根据匹配给定的正则表达式来拆分此字符串。

 
 

boolean

 

startsWith(String prefix)
          测试此字符串是否以指定的前缀开始。

 
 

boolean

 

startsWith(String prefix, int toffset)
          测试此字符串从指定索引开始的子字符串是否以指定前缀开始。

 
 

CharSequence

 

subSequence(int beginIndex, int endIndex)
          返回一个新的字符序列,它是此序列的一个子序列。

 
 

String

 

substring(int beginIndex)
          返回一个新的字符串,它是此字符串的一个子字符串。

 
 

String

 

substring(int beginIndex, int endIndex)
          返回一个新字符串,它是此字符串的一个子字符串。

 
 

char[]

 

toCharArray()
          将此字符串转换为一个新的字符数组。

 
 

String

 

toLowerCase()
          使用默认语言环境的规则将此 String 中的所有字符都转换为小写。

 
 

String

 

toLowerCase(Locale locale)
          使用给定 Locale 的规则将此 String 中的所有字符都转换为小写。

 
 

String

 

toString()
          返回此对象本身(它已经是一个字符串!)。

 
 

String

 

toUpperCase()
          使用默认语言环境的规则将此 String 中的所有字符都转换为大写。

 

String

 

trim()
          返回字符串的副本,忽略前导空白和尾部空白。

 

static String

 

valueOf(boolean b)
          返回 boolean 参数的字符串表示形式。

 
           

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

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