Board logo

標題: split() 函式 [打印本頁]

作者: tonyh    時間: 2013-6-1 17:22     標題: split() 函式

  1. public class ch67
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str1="Hello! My name is Tony!";
  6.         String a[]=str1.split("e");
  7.         for(int i=0; i<a.length; i++)
  8.         {
  9.             System.out.println(a[i]);
  10.         }
  11.         String str2="星星:月亮:太陽";
  12.         String b[]=str2.split(":");
  13.         for(int i=0; i<b.length; i++)
  14.         {
  15.             System.out.println(b[i]);
  16.         }
  17.     }
  18. }
複製代碼

作者: t2364705    時間: 2013-6-1 17:26

  1. public  class ch67
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         String str1="Hello! My name is Tony!";
  6.         String a[]=str1.split("e");
  7.         for(int i=0; i<a.length; i++)
  8.         {
  9.             System.out.println(a[i]);
  10.         }
  11.         String str2="星星:月亮:太陽";
  12.         String b[]=str2.split(":");
  13.         for(int i=0; i<b.length; i++)
  14.         {
  15.             System.out.println(b[i]);
  16.         }
  17.     }
  18. }
複製代碼

作者: 黃博鴻    時間: 2013-6-1 17:27

  1. public class tqc203
  2. {
  3.       public static void main(String args[])
  4.       {
  5.          String str1="Hello! My name is Tony!";
  6.          String a[]=str1.split("e");
  7.          for(int i=0; i<a.length; i++)
  8.          {
  9.              System.out.println(a[i]);
  10.          }
  11.          String str2="星星:月亮:太陽";
  12.          String b[]=str2.split(":");
  13.          for(int i=0; i<b.length; i++)
  14.          {
  15.              System.out.println(b[i]);
  16.          }
  17.       }
  18. }
複製代碼

作者: 尤泓鈞    時間: 2013-6-1 17:28

  1. public class tqc203
  2. {
  3.       public static void main(String args[])
  4.       {
  5.          String str1="Hello! My name is Tony!";
  6.          String a[]=str1.split("e");
  7.          for(int i=0; i<a.length; i++)
  8.          {
  9.              System.out.println(a[i]);
  10.          }
  11.          String str2="星星:月亮:太陽";
  12.          String b[]=str2.split(":");
  13.          for(int i=0; i<b.length; i++)
  14.          {
  15.              System.out.println(b[i]);
  16.          }
  17.       }
  18. }
複製代碼





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