| Here is the php function to remove all character which are not alphabets or numbers to remove the white space just pass the param $removeSpace as 1 function removeNonAlphaNumero( $str , $removeSpace = 0 ){ $return_string = ""; if( trim($str) != "" ){ if($removeSpace ) $return_string = preg_replace("/[^a-zA-Z0-9]/", "", $str); else $return_string = preg_replace("/[^a-zA-Z0-9\s]/", "", $str); } return $return_string; } | |
| Tweet | |
Deep-sea Anglerfish are the strange and elusive creature that are very rarely observed in their natural habitat. Fewer than half a dozen have ever been captured on film or video by deep-diving research vehicles.They are mostly found in tropical to temperate waters of the Indian,Pacific and Atlantic Oceans.

Comments
Post a Comment