Java String Split by Delimiter splitString(String str, String delims)

Here you can find the source of splitString(String str, String delims)

Description

split String

License

Open Source License

Declaration

public static String[] splitString(String str, String delims) 

Method Source Code

//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;
    }
}

Related

  1. splitString(String source, String delimiter)
  2. splitString(String splitStr, String delim)
  3. splitString(String str, char delim)
  4. splitString(String str, String delim)
  5. splitString(String str, String delimiter)
  6. splitString(String toSplit, String delimiter)
  7. splitStringList(String strList, String delimit)
  8. splitStringUsingDelimiter(String name, String delimiter)
  9. splitText(String text, String delimiter)