What is Diffrent between Explode and Split ?

Asked: Apr 15, 2023

Split function splits string into array by regular expression. Explode splits a string into array by string.

For Example:explode(" and", "India and Pakistan and Srilanka"); split(" :", "India : Pakistan : Srilanka");

Both of these functions will return an array that contains India, Pakistan, and Srilanka.

Asked by brijesh

Answers (0)

No answers yet. Be the first to answer!