Android String Split strToArray(String string, String delim)

Here you can find the source of strToArray(String string, String delim)

Description

Convert String to Array of Strings

License

Apache License

Parameter

Parameter Description
string input string
delim delimiter of strings

Return

array of strings

Declaration

public static String[] strToArray(String string, String delim) 

Method Source Code

//package com.java2s;
/*/*ww w . j a v a  2s  .  c  om*/
 * Copyright (C) 2013 Blandware (http://www.blandware.com)
 *
 * 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 android.text.TextUtils;

public class Main {
    private static final String DEFAULT_DELIM = ",";

    /**
     * Convert String to Array of Strings using default delimiter (",")
     * @param string input string
     * @return array of strings
     */
    public static String[] strToArray(String string) {
        return strToArray(string, DEFAULT_DELIM);
    }

    /**
     * Convert String to Array of Strings
     * @param string input string
     * @param delim delimiter of strings
     * @return array of strings
     */
    public static String[] strToArray(String string, String delim) {
        if (TextUtils.isEmpty(delim)) {
            throw new IllegalArgumentException("delim cannot be empty");
        }
        if (string == null) {
            return null;
        }
        if (string.length() == 0) {
            return new String[] {};
        }

        return string.split(delim);
    }
}

Related

  1. explode(String original, String split)
  2. getFirstWord(String str)
  3. getLine(String text, int line)
  4. stringToLongArray(String src, String separator)
  5. strToArray(String string)
  6. getStringArray(String str)
  7. split(String source, String separator, int arraylength)
  8. split(String str, String delims, boolean trimTokens)
  9. stringToListStr(String input)