Takes a string apart based on a delimiter : Explode implode : Development PHP Source Code


PHP Source Code » Development » Explode implode »

 

Takes a string apart based on a delimiter



<html>
<head>
<title>Explode</title>
</head>
<body>
<?php
     $raw_contact_data = 
          "A,,B,555 C,D,E,55555,555.555.5555n"
        "F,,G,1010 H,I,J,99999n"
        "Q,,R,555 S,T,U,5,55.5.5n";
   
     $contact_records = explode("n", $raw_contact_data);
     
     foreach($contact_records as $person)
     {
          $person_data = explode(",", $person);
   
          foreach($person_data as $contact_item)
          {
               $contact_item = ucfirst($contact_item);
               print("$contact_item ");
          }
          print("<br />n");
     }
?>
</body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Development
» Explode implode