Java Array Create toArray(String string)

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

Description

to Array

License

Apache License

Declaration

private static String[] toArray(String string) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static String[] toArray(String string) {
        return string.split(",");
    }/*from w  ww  .java 2s .  c om*/
}

Related

  1. newArray(String... args)
  2. toArray(String source, String delimiter)
  3. toArray(String str)
  4. toArray(String str)
  5. toArray(String str, String split)
  6. toArray(String text)
  7. toArray(T... items)
  8. toArray(T... items)
  9. toArrayClass(String className)