$array = array("1.111","2,222"); for ($i=0; $i< count($array); $i++) { if(!strstr($array[$i], '.')) { echo $array[$i]."<br>"; } }