本帖最後由 b790113g 於 2012-2-25 11:59 編輯 + V! b" Z% }% B I! Z2 F
( h3 m) B6 `# Z1 [+ ?( G
(1) 可判斷以逗號區隔之字串個數
% E I+ b/ t4 \ R) g* j# J(2) 使用者輸入以逗號隔開不特定個數字串,程式將逗號兩旁之字擷取儲存,並分行顯示
" B8 f% b! I2 y8 w2 g' \(3) 若輸入空白字元,執行結果顯示警告訊息( _. x3 E. Z8 c% r* F I
) u" e0 e/ Y/ f( e2 Nimport java.util.*;- import java.util.*; //引入才可使用split
- public class jva203{
- public static void main(String arg[]){
- if(arg.length!=1){
- System.out.println("參數借誤!字串中不得有空白或必須以逗號隔開!");
- return ;
- }
- //111,2222,3333 split() 必須引入 java.util.*
- String str[] = arg[0].split(",");
- System.out.println("逗號隔開的字串個數共有: "+str.length);
-
- for(int i=0;i<str.length;i++){
- System.out.println( (i+1)+"."+str[i] );
- }
- }
- }
複製代碼 |