Java String Explode explode(String tokenizer, String text)

Here you can find the source of explode(String tokenizer, String text)

Description

explode

License

Open Source License

Declaration

public static String[] explode(String tokenizer, String text) 

Method Source Code

//package com.java2s;
//For more information, please refer to <http://unlicense.org/>

public class Main {
    public static String[] explode(String tokenizer, String text) {
        String[] split = text.split(tokenizer);
        split = text.split(tokenizer);/*from   w  ww .  java  2 s .co m*/
        return split;
    }
}

Related

  1. explode(String s, String delim)
  2. explode(String source, String deliminator)
  3. explode(String split, String input)
  4. explode(String src, String sep)
  5. explode(String string, String separators)
  6. explode(String[] elements, String separator)
  7. explodeCamelCase(String str, boolean excludeGetOrSet)
  8. explodeDomains(final String fqdn)
  9. explodeLongs(String line, String sep)