Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Takes a string apart based on a delimiter

Mon Oct 27, 2008 11:58 pm

Code:
<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>




Post a reply
  Related Posts  to : Takes a string apart based on a delimiter
 Splitting a String Based on a Found String     -  
 recursive string reversal- reverse string     -  
 check if string ends with specific sub-string in php     -  
 check if string start with a specific sub-string in PHP     -  
 String token for string split     -  
 Cookie based login in php     -  
 Run different function based on the selected Tab JTabbedPane     -  
 prapose me a web based mini project     -  
 Home Based Research Jobs.     -  
 what is the query to retrieve to student data based on least     -  

Topic Tags

PHP Strings