<?php $info = "J. G:joe@navioo.com|Vancouver, BC"; // delimiters include colon (:), vertical bar (|), and comma (,) $tokens = ":|,"; $tokenized = strtok($info, $tokens); // print out each element in the $tokenized array while ($tokenized) { echo "Element = $tokenized<br>"; // Don't include the first argument in subsequent calls. $tokenized = strtok($tokens); } ?>
|