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

Dividing a String into Tokens with strtok()

Sun Oct 26, 2008 10:16 pm

Code:
<html>
<head>
<title>Dividing a string into tokens with strtok()</title>
</head>
<body>
<?php
$test 
"http://www.codemiles.com/qs.xp?OP=dnquery.xp&ST=MS&DBS=2&QRY=developer+php";
$delims "?&";
$word strtok$test$delims );
while ( 
is_string$word ) ) {
   if ( 
$word ){
       print 
"$word<br>";
   }    
   
$word strtok$delims);
}
 
?>
</body>
</html>




Post a reply
  Related Posts  to : Dividing a String into Tokens with strtok()
 Dividing two Integer values     -  
 check if string ends with specific sub-string in php     -  
 check if string start with a specific sub-string in PHP     -  
 recursive string reversal- reverse string     -  
 Splitting a String Based on a Found String     -  
 String token for string split     -  
 Pad a string to a certain length with another string     -  
 Append string in C++     -  
 split string in C++     -  
 formatting string in c++     -  

Topic Tags

PHP Strings