Here you can find the source of explode(String split, String input)
public static String[] explode(String split, String input)
//package com.java2s; //License from project: Open Source License public class Main { public static String[] explode(String split, String input) { return input.split(split); }//from w ww. j av a 2 s .com }