Java String Split by Word split(String words, String character)

Here you can find the source of split(String words, String character)

Description

Splits this string around matches of the given character

License

Apache License

Parameter

Parameter Description
words String to split
character Separate character

Return

List of string compute by splitting the words list

Declaration

public static List<String> split(String words, String character) 

Method Source Code

//package com.java2s;
/*/*from  ww w  .  ja v  a 2  s. c  o  m*/
 * Copyright 2015 ROLLUS Lo?c
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.ArrayList;
import java.util.Arrays;

import java.util.List;

public class Main {
    /**
     * Splits this string around matches of the given character
     * @param words String to split
     * @param character Separate character
     * @return List of string compute by splitting the words list
     */
    public static List<String> split(String words, String character) {
        if (words == null) {
            return new ArrayList<String>();
        }
        if (words.length() == 0) {
            return new ArrayList<String>();
        }
        String[] arrays = words.split(character);
        return Arrays.asList(arrays);
    }
}

Related

  1. splitIdentifierToWords(String str)
  2. splitIntoWords(String s)
  3. splitKeyWords(String sql)
  4. splitOne(String wordString)