I have a list of domain names, for example:

domain1.com
domain2.com
domainxxx2.com
dom.com

from that list I want to get:

length 7 [2]
length 10 [1]
length 3 [1]

I know how to split the tld and count each domain length, but dont know how to group and count those with the same length.

I would like to do it on PHP.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Quicker & cleaner but still untested

$sorted = array();
foreach($domains as $domain)
{
    $sorted[strlen($domain)][] = $domain;
}
link|improve this answer
Yes, definitely quicker than mine in terms of execution speed. :) When I described mine as "quick" I was referring to the amount of time I put into thinking of a solution. – stevelove Oct 18 '10 at 20:14
Ya, that was clear. Not sure why I prefaced my code like I did. – Pickle Oct 19 '10 at 15:04
feedback

Quick and dirty and untested:

$lengths = [];
for ($i = 1; $i <= 255; $i++) {
    foreach ($domains as $domain) {
        if (strlen($domain) === $i) {
            $lengths[$i][] = $domain;
        }
    }
}
link|improve this answer
Use Pickle's answer instead. It's much faster. – stevelove Oct 18 '10 at 20:14
Haven't used your code but it helped me to put this together: [foreach($domains as $domain) { $tmp = explode(".", $domain); $length = strlen(trim($tmp[0])); $count[$length] = $count[$length]+1; } print_r($count);] – gtilx Oct 18 '10 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.