Dynadot

LLL.txt files - 3 letter generators

Spaceship Spaceship
Watch
Impact
4
Hello all,

I'm looking for a txt file with all the possible 3 letters combinations (without numbers)
so basically with the 26^3 combinations... could you please help me?

I have found some online tools but I need to do that manually for all the 26 letters...

thank you
 
2
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
I do it via PHP script, which generates me whatever I want. Here is all the possible 3 letter combinations list. 17 576 combinations.
 

Attachments

  • lll.txt
    85.8 KB · Views: 7,266
15
•••
1
•••
1
•••
<?php

$blah = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
$extension = '.com';

for ($a=0; $a<26; $a++)
{
for ($b=0; $b<26; $b++)
{
for ($c=0; $c<26; $c++)
{
echo $blah[$a] . $blah[$b] . $blah[$c] . $extension . "\n";
}
}
}
?>
 
5
•••
function generateRandomString($length = 3) {
$characters = 'abcdefgpijklmnopqrstuxyz';
$charactersLength = strlen($characters);
$randomString = '';
for ($i = 0; $i < $length; $i++) {
$randomString .= $characters[rand(0, $charactersLength - 1)];
}
return $randomString;
}
 
2
•••
<?php

$blah = array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
$extension = '.com';

for ($a=0; $a<26; $a++)
{
for ($b=0; $b<26; $b++)
{
for ($c=0; $c<26; $c++)
{
echo $blah[$a] . $blah[$b] . $blah[$c] . $extension . "\n";
}
}
}
?>

Thank you , and i added </br> tag insteadof \n as it was not working

but this was showing all 1 letter and 2 letter too ..can we restrict this to only 3 letter ?

i know i can filter with excel , but still it is helpful if the script can do the task as we can use it later to generate 4 letter as well

thanks
 
1
•••
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back