程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> 2016/09/21 java split用法,2016split

2016/09/21 java split用法,2016split

編輯:JAVA綜合教程

2016/09/21 java split用法,2016split


public String[] split(String regex) 默認limit為0

public String[] split(String regex, int limit)

當limit>0時,則應用n-1次

public static void main(String[] args) {
        String s = "boo:and:foo";
        String[] str = s.split(":",2);
        System.out.print(str[0] + "," + str[1]);
  }

結果:

boo,and:foo

當limit<0時,則應用無限次

public static void main(String[] args) {
        String s = "boo:and:foo";
        String[] str = s.split(":",-2);
        for(int i = 0 ; i < str.length ; i++){
            System.out.print(str[i] + " ");
        }
  }

結果:

boo and foo

當limit=0時,應用無限次並省略末尾的空字符串

public static void main(String[] args) {
        String s = "boo:and:foo";
        String[] str = s.split("o",-2);
        for(int i = 0 ; i < str.length ; i++){
            if( i < str.length - 1)
            System.out.print("(" + str[i] + "),");
            else
            System.out.print("(" + str[i] + ")");
        }
  }

結果:

(b),(),(:and:f),(),()
public static void main(String[] args) {
        String s = "boo:and:foo";
        String[] str = s.split("o",0);
        for(int i = 0 ; i < str.length ; i++){
            if( i < str.length - 1)
            System.out.print("(" + str[i] + "),");
            else
            System.out.print("(" + str[i] + ")");
        }
  }

結果:

(b),(),(:and:f)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved