[ create a new paste ] login | about

Link: http://codepad.org/R12dohnz    [ raw code | output | fork ]

PHP, pasted on Sep 11:
1
2
3
4
5
6
7
8
9
10
11
12
<?php 
$str = "hey hello man are you going to write some code";

$strarray = explode(' ', $str);
$new_str = '';
foreach($strarray as $word){
   if(strlen($word) >= 4)
      $new_str .= ' '.$word;
}
echo $new_str;

?>


Output:
1
 hello going write some code


Create a new paste based on this one


Comments: