Here you can find the source of splitString(String str, String delims)
public static String[] splitString(String str, String delims)
//package com.java2s; /*/*from w w w.jav a2s .c o m*/ Copyright (C) 2004-2009 Juho V?h?-Herttua This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ import java.util.*; public class Main { public static String[] splitString(String str, String delims) { if (str == null) return null; else if (str.equals("") || delims == null || delims.length() == 0) return new String[] { str }; String[] s; Vector v = new Vector(); int pos, newpos; pos = 0; newpos = str.indexOf(delims, pos); while (newpos != -1) { v.addElement(str.substring(pos, newpos)); pos = newpos + delims.length(); newpos = str.indexOf(delims, pos); } v.addElement(str.substring(pos)); s = new String[v.size()]; for (int i = 0; i < s.length; i++) { s[i] = (String) v.elementAt(i); } return s; } }