WEB开发网
开发学院WEB开发Jsp java常用字符串处理 阅读

java常用字符串处理

 2009-11-23 21:02:00 来源:WEB开发网   
核心提示: 1、 Int indexOf(int ch) 返回指定字符在此字符串中第一次出现处的索引,2、 Int indexOf(int ch, int fromIndex) 从指定的索引开始搜索,java常用字符串处理,返回在此字符串中第一次出现指定字符处的索引,3、 Int indexOf(String str) 返回第一
 1、 Int indexOf(int ch)
     返回指定字符在此字符串中第一次出现处的索引。
2、 Int indexOf(int ch, int fromIndex)
     从指定的索引开始搜索,返回在此字符串中第一次出现指定字符处的索引。
3、 Int indexOf(String str)
     返回第一次出现的指定子字符串在此字符串中的索引。
4、 Int indexOf(String str, int fromIndex)
     从指定的索引处开始,返回第一次出现的指定子字符串在此字符串中的索引。
5、 String substring(int beginIndex)
     返回一个新的字符串,它是此字符串的一个子字符串。该子字符串始于指定索引处的字符,一直到此字符串末尾。
  例如:
"unhappy".substring(2) returns "happy" "Harbison".substring(3) returns "bison" "emptiness".substring(9) returns "" (an empty string)
6、 String  substring(int beginIndex, int endIndex)
     返回一个新字符串,它是此字符串的一个子字符串。该子字符串从指定的 beginIndex 处开始,一直到索引 endIndex - 1 处的字符。因此,该子字符串的长度为 endIndex-beginIndex。
  示例:
"hamburger".substring(4, 8) returns "urge" "smiles".substring(1, 5) returns "mile"
7、 String  toLowerCase()
     使用默认语言环境的规则将此 String 中的所有字符都转换为小写。
8、 String  toUpperCase(Locale locale)
     使用给定的 Locale 规则将此 String 中的所有字符都转换为大写。
9、 String  trim()
     返回字符串的副本,忽略前导空白和尾部空白。
10、  boolean startsWith(String PRefix)
     测试此字符串是否以指定的前缀开始。
11、  boolean endsWith(String suffix)
     测试此字符串是否以指定的后缀结束。
12、 boolean equals(Object anObject)
     比较此字符串与指定的对象。 

Tags:java 常用 字符串

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接