Strings Php

   $info = "J. G:joe@rntsoft.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
";
      // Don't include the first argument in subsequent calls.
      $tokenized = strtok($tokens);
   }
?>