Java String Split by Space splitBySpace(String p_str)

Here you can find the source of splitBySpace(String p_str)

Description

split By Space

License

Apache License

Declaration

private static String[] splitBySpace(String p_str) 

Method Source Code

//package com.java2s;
/**//w w  w .j av a  2  s  . c o  m
 *  Copyright 2009 Welocalize, Inc. 
 *  
 *  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;

public class Main {
    private static String[] splitBySpace(String p_str) {
        if (p_str == null || p_str.trim().equals(""))
            return new String[] { p_str };
        ArrayList<String> list = new ArrayList<String>();
        String[] tmp = p_str.split(" ");
        for (String t : tmp) {
            if ("".equals(t.trim()))
                continue;
            list.add(t);
        }
        tmp = new String[list.size()];
        list.toArray(tmp);
        return tmp;
    }
}

Related

  1. split(String source, String limit, boolean trim, boolean ignoreWhitespace)
  2. splitAndKeepEscapedSpaces(String string, boolean preserveEscapes)
  3. splitAtSpaces(String s)
  4. splitInWhiteSpaces(String string)
  5. splitNamespaceTitle(String fullTitle)
  6. splitOnSpace(final String string)
  7. splitOnSpace(String string)