標題:
split() 函式
[打印本頁]
作者:
tonyh
時間:
2013-6-1 17:22
標題:
split() 函式
public class ch67
{
public static void main(String args[])
{
String str1="Hello! My name is Tony!";
String a[]=str1.split("e");
for(int i=0; i<a.length; i++)
{
System.out.println(a[i]);
}
String str2="星星:月亮:太陽";
String b[]=str2.split(":");
for(int i=0; i<b.length; i++)
{
System.out.println(b[i]);
}
}
}
複製代碼
作者:
t2364705
時間:
2013-6-1 17:26
public class ch67
{
public static void main(String args[])
{
String str1="Hello! My name is Tony!";
String a[]=str1.split("e");
for(int i=0; i<a.length; i++)
{
System.out.println(a[i]);
}
String str2="星星:月亮:太陽";
String b[]=str2.split(":");
for(int i=0; i<b.length; i++)
{
System.out.println(b[i]);
}
}
}
複製代碼
作者:
黃博鴻
時間:
2013-6-1 17:27
public class tqc203
{
public static void main(String args[])
{
String str1="Hello! My name is Tony!";
String a[]=str1.split("e");
for(int i=0; i<a.length; i++)
{
System.out.println(a[i]);
}
String str2="星星:月亮:太陽";
String b[]=str2.split(":");
for(int i=0; i<b.length; i++)
{
System.out.println(b[i]);
}
}
}
複製代碼
作者:
尤泓鈞
時間:
2013-6-1 17:28
public class tqc203
{
public static void main(String args[])
{
String str1="Hello! My name is Tony!";
String a[]=str1.split("e");
for(int i=0; i<a.length; i++)
{
System.out.println(a[i]);
}
String str2="星星:月亮:太陽";
String b[]=str2.split(":");
for(int i=0; i<b.length; i++)
{
System.out.println(b[i]);
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2