Android String Split strToArray(String string)

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

Description

Convert String to Array of Strings using default delimiter (",")

License

Apache License

Parameter

Parameter Description
string input string

Return

array of strings

Declaration

public static String[] strToArray(String string) 

Method Source Code

//package com.java2s;
/*//  w w  w. jav a2 s.c  o m
 * 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. splitString(String tokenedStr, String token)
  2. explode(String original, String split)
  3. getFirstWord(String str)
  4. getLine(String text, int line)
  5. stringToLongArray(String src, String separator)
  6. strToArray(String string, String delim)
  7. getStringArray(String str)
  8. split(String source, String separator, int arraylength)
  9. split(String str, String delims, boolean trimTokens)