2011年3月22日

<Java> JVA203-拆解字串




(1) 可判斷以逗號區隔之字串個數
(2) 使用者輸入以逗號隔開不特定個數字串,程式將逗號兩旁之字擷取儲存,並分行顯示
(3) 若輸入空白字元,執行結果顯示警告訊息

===============================


import java.util.*;

public class JVA203
{
  public static void main(String[] args)                                           
  {
   if( args.length == 1 ){
    
      String str[]= args[0].split(",");
      int stamt = str.length;
      System.out.println("逗號隔開的字串個數共有: " + stamt);
      for(int i = 0 ; i<stamt ; i++)
      { 
         System.out.println( (i+1) + "." + str[i] );
      }
   }
    else{
      System.out.println("參數錯誤!字串不得有空白或必須以逗號隔開");   
    }
  }
}

沒有留言:

張貼留言