程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> 字符串分割

字符串分割

編輯:JAVA編程入門知識

  

/**
 * 字符串分割
 *
 * @author
   * @param str java.lang.String 要分割的字符串
   * @param sp java.lang.String 需要被替換的子串
   * @return 替換之後的字符串
   * @return 分割失敗,返回null
   */
  public static String[] Split(String str, String sp)
  {
 StringTokenizer st = new StringTokenizer(str, sp);
 String strSplit[];
 try
 {
  int stLength=st.countTokens();//獲取分割後的數量
  if(stLength<=1)
  {
  return null;
  }
  strSplit=new String[stLength];
  int i=0;
  while (st.hasMoreTokens())
  {
  strSplit[i]=st.nextToken().toString();
  i++;
  }
 }
 catch(Exception e)
 {
  return null;
 }
    return strSplit;
  }

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