$url= 'http://www.nefertiter.com'; $partes = explode('.', $url); for ($i = 0 ; $i < count($partes); $i++){ if (!ereg('/',$partes[$i]) && strlen($partes[$i]) >= 4){ $url = $partes[$i]; break; } } echo $url;