Last updated on July 29th, 2009 at 03:11 am

How to split a word or sentence delimited with slashes,commas, dots, or hyphens

< ?php
// Delimiters may be slash, comma, or hyphen
$data = “Welcome to, the world of php”;
list($first, $second) = split(‘[/,-]’, $data);
echo “First Letter: $first; Second Splitted letter: $second
\n”;
?>

Leave a Reply

Your email address will not be published. Required fields are marked *