Java String from fromString(String string)

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

Description

from String

License

Open Source License

Declaration

public static String[] fromString(String string) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String[] fromString(String string) {
        String[] array = string.split(",");

        return array;
    }//w w  w .  jav a2s . co m
}

Related

  1. fromString(final String string)
  2. fromString(String s)
  3. fromString(String value)
  4. fromStringStrings(String s, String separator)