Use more than one delimiter to split string : String Token : String PHP Source Code


PHP Source Code » String » String Token »

 

Use more than one delimiter to split string



<?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);
   }
?>



           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo String
» String Token