Java String Divide divide(String str, char c)

Here you can find the source of divide(String str, char c)

Description

divide

License

Apache License

Declaration

private static String[] divide(String str, char c) 

Method Source Code

//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
}

Related

  1. div(String second, String first)
  2. div(String text)
  3. divide(final String s)
  4. divide(Object o1, Object o2, String type)
  5. divide(String m)
  6. divide(String ts, String ms)
  7. divide(String type)
  8. divideFullName(final String fullName)