標題:
indexOf() 與 lastIndexOf() 函式
[打印本頁]
作者:
tonyh
時間:
2015-2-10 15:57
標題:
indexOf() 與 lastIndexOf() 函式
本帖最後由 tonyh 於 2015-2-10 16:26 編輯
[attach]1149[/attach]
public class ch56
{
public static void main(String args[])
{
String str="An apple a day keeps the doctor away!";
System.out.println("字串: "+str);
System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
}
}
複製代碼
作者:
林以諾
時間:
2015-2-10 16:15
ublic class ch56
{
public static void main(String args[])
{
String str="An apple a day keeps the doctor away!";
System.out.println("字串: "+str);
System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
}
}
複製代碼
作者:
黃崇維
時間:
2015-2-10 16:23
本帖最後由 黃崇維 於 2015-2-10 16:31 編輯
public class ch56
{
public static void main(String args[])
{
String str="An apple a day keeps the doctor away!";
System.out.println("字串: "+str);
System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
}
}
複製代碼
作者:
張瀚仁
時間:
2015-2-10 16:25
public class ch56
{
public static void main(String args[])
{
String str="An apple a day keeps the doctor away!";
System.out.println("字串: "+str);
System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
}
}
複製代碼
作者:
劉泳鱔
時間:
2015-2-10 16:25
public class ch56
{
public static void main(String args[])
{
String str="An apple a day keeps the doctor away!";
System.out.println("字串: "+str);
System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
}
}
複製代碼
作者:
許逸群
時間:
2015-2-10 16:34
public class ch56
{
public static void main(String args[])
{
String str="An apple a day keeps the doctor away!";
System.out.println("字串: "+str);
System.out.println("第一個a出現在字串裡的第"+str.indexOf("a")+"個位置");
System.out.println("最後一個a出現在字串裡的第"+str.lastIndexOf("a")+"個位置");
System.out.println("針對第8個位置之後的部分搜尋, 第一個a出現在字串裡的第"+str.indexOf("a",8)+"個位置");
System.out.println("針對第8個位置之前的部分搜尋, 最後一個a出現在字串裡的第"+str.lastIndexOf("a",8)+"個位置");
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2