Java String to List stringToList(String string, String separator)

Here you can find the source of stringToList(String string, String separator)

Description

Convert a string of elements separated by a separator into a list.

License

Open Source License

Parameter

Parameter Description
string a parameter
separator a parameter

Declaration

public static List<String> stringToList(String string, String separator) 

Method Source Code

//package com.java2s;
/*//from w w w . ja v  a 2s.  com
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import java.util.ArrayList;

import java.util.List;

public class Main {
    /**
     * Convert a string of elements separated by a separator into a list.
     * 
     * @param string
     * @param separator
     * @return
     */
    public static List<String> stringToList(String string, String separator) {
        String[] values = string.split(separator);

        List<String> result = new ArrayList<String>();
        for (String value : values) {
            result.add(value);
        }

        return result;
    }
}

Related

  1. stringToList(String sText)
  2. stringToList(String str)
  3. stringToList(String str)
  4. stringToList(String str, char delimiter)
  5. stringToList(String str, String delim)
  6. stringToList(String text, String seperator)
  7. stringToList(String toList)
  8. stringToList(String toList, String delimiter)
  9. stringToList(String value)