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






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.5555\n"
        . "F,,G,1010 H,I,J,99999\n"
        . "Q,,R,555 S,T,U,5,55.5.5\n";
   
     $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>

           
       








Related examples in the same category

1.Set Implode char
2.explode time
3.Implode array elements
4.Imploding an Array