Here you can find the source of strToArray(String string, String delim)
Parameter | Description |
---|---|
string | input string |
delim | delimiter of strings |
public static String[] strToArray(String string, String delim)
//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); } }