Board logo

標題: indexOf() 與 lastIndexOf() 函式 [打印本頁]

作者: tonyh    時間: 2015-2-10 15:57     標題: indexOf() 與 lastIndexOf() 函式

本帖最後由 tonyh 於 2015-2-10 16:26 編輯

[attach]1149[/attach]
  1. public class ch56
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="An apple a day keeps the doctor away!";
  6.         System.out.println("字串: "+str);
  7.         System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
  8.         System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
  9.         System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
  10.         System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
  11.     }
  12. }
複製代碼

作者: 林以諾    時間: 2015-2-10 16:15

  1. ublic class ch56
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="An apple a day keeps the doctor away!";
  6.         System.out.println("字串: "+str);
  7.         System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
  8.         System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
  9.         System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
  10.         System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
  11.     }
  12. }
複製代碼

作者: 黃崇維    時間: 2015-2-10 16:23

本帖最後由 黃崇維 於 2015-2-10 16:31 編輯
  1. public class ch56
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="An apple a day keeps the doctor away!";
  6.         System.out.println("字串: "+str);
  7.         System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
  8.         System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
  9.         System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
  10.         System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
  11.     }
  12. }
複製代碼

作者: 張瀚仁    時間: 2015-2-10 16:25

  1. public class ch56
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="An apple a day keeps the doctor away!";
  6.         System.out.println("字串: "+str);
  7.         System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
  8.         System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
  9.         System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
  10.         System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
  11.     }
  12. }
複製代碼

作者: 劉泳鱔    時間: 2015-2-10 16:25

  1. public class ch56
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="An apple a day keeps the doctor away!";
  6.         System.out.println("字串: "+str);
  7.         System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
  8.         System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
  9.         System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
  10.         System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
  11.     }
  12. }
複製代碼

作者: 許逸群    時間: 2015-2-10 16:34

  1. public class ch56
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str="An apple a day keeps the doctor away!";
  6.         System.out.println("字串: "+str);
  7.         System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
  8.         System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
  9.         System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
  10.         System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
  11.     }
  12. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2