Java String Split split(String value)

Here you can find the source of split(String value)

Description

split

License

Open Source License

Declaration

public static List<String> split(String value) 

Method Source Code


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

import java.util.*;

public class Main {
    public static List<String> split(String value) {
        final String[] values = value.split(",");
        return Arrays.asList(values);
    }//from   w w w  .j a v a 2  s  .c  om
}

Related

  1. split(String text)
  2. split(String text)
  3. split(String text, String token)
  4. split(String token, String s)
  5. split(String toSplit)
  6. split(String value)
  7. split_fields(String str)
  8. split_str(String input, String split)
  9. splitAndTrim(String str)