Here you can find the source of divide(String str, char c)
private static String[] divide(String str, char c)
//package com.java2s; //License from project: Apache License public class Main { private static String[] divide(String str, char c) { // TODO dividir (split) string // entra str = "um texto exemplo", c = ' ' // sai ["um", "texto", "exemplo"] return null; }//from ww w . ja v a2 s .c o m }