码迷,mamicode.com
首页 > 其他好文 > 详细

indexOf()用法 示例如下。

时间:2017-07-21 17:16:25      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:nbsp   com   word   oid   xxxxx   star   string   static   位置   

  1. public class Test {  
  2.     public static void main(String[] args) {  
  3.         String s = "xXccxxxXX";  
  4.         // 从头开始查找是否存在指定的字符         //结果如下   
  5.         System.out.println(s.indexOf("c"));     //2  
  6.         // 从第四个字符位置开始往后继续查找,包含当前位置  
  7.         System.out.println(s.indexOf("c", 3));  //3  
  8.         //若指定字符串中没有该字符则系统返回-1  
  9.         System.out.println(s.indexOf("y"));     //-1  
  10.         System.out.println(s.lastIndexOf("x")); //6  
  11.     }  
  12. }  

indexOf()用法 示例如下。

标签:nbsp   com   word   oid   xxxxx   star   string   static   位置   

原文地址:http://www.cnblogs.com/cyz110/p/7218129.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!