字符串操作函数

2019-02-25 16:10:08来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

indexOf() 

  • public int indexOf(int ch): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  • int indexOf(String str): 返回指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  • public int indexOf(int ch, int fromIndex): 返回从 fromIndex 位置开始查找指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  • int indexOf(String str, int fromIndex): 返回从 fromIndex 位置开始查找指定字符在字符串中第一次出现处的索引,如果此字符串中没有这样的字符,则返回 -1。

  // 用例: 
  String str = "<Hello World>";   int indexOf = str.indexOf("<");   int of = str.indexOf(">");   String substring = str.substring(indexOf+1, of);   String replaceAll = str.replaceAll("<", ">");   System.out.println(replaceAll);

  

replaceAll()

  • replaceAll() 方法使用给定的参数 replacement 替换字符串所有匹配给定的正则表达式的子字符串(regex)。
  • 返回值: 成功则返回替换的字符串,失败则返回原始字符串。

  // 用例: 
  String str = new String("www.google.com"); System.out.println(str.replaceAll("www","123")); System.out.println(str.replaceAll("(.*)google(.*)", "123"));

 

  

 

 


原文链接:https://www.cnblogs.com/tanjiyuan/p/10414166.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:SpringBoot跨域小结

下一篇:spring-boot-2.0.3不一样系列之番外篇 - @Configuration、Condit