All 3 letters domain names

Discussion in 'Domain Names' started by DavidCh, Feb 4, 2011.

  1. #1
    Hello,

    Do you have a list of all 3 letters domain names? Aaa, aab, aac etc. If no, do you know a software to create this list?

    Thanks.
     
    DavidCh, Feb 4, 2011 IP
  2. jenny4pres

    jenny4pres Peon

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If you run this PHP code - it should print out all possible combinations of 3 letters I think. Should be 26 to the 3rd power of combinations (so you can verify).

    <?php

    $chars = range("a", "z");
    foreach ($chars as $char1) {
    foreach ($chars as $char2) {
    foreach ($chars as $char3) {
    echo "{$char1}{$char2}{$char2}\n";
    }
    }
    }

    The registrar I use allows you to upload CSV files of domains to check availability - might come in handy for you.
     
    jenny4pres, Feb 4, 2011 IP
  3. jenny4pres

    jenny4pres Peon

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Minor correction in that code:

    <?php

    $chars = range("a", "z");
    foreach ($chars as $char1) {
    foreach ($chars as $char2) {
    foreach ($chars as $char3) {
    echo "{$char1}{$char2}{$char3}\n";
    }
    }
    }
     
    jenny4pres, Feb 4, 2011 IP
  4. rod007

    rod007 Active Member

    Messages:
    166
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #4
    Let's just do a recap here:

    A guy asks you "do you know how to print 100 dollar bills and you don't print them for yourself and instead you show him the way to do it..."!!!

    I hope you can see the analogy.
     
    rod007, Feb 4, 2011 IP
  5. ForgottenMemorie

    ForgottenMemorie Member

    Messages:
    471
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    30
    #5
    I have a list, i have many.
     
    ForgottenMemorie, Feb 4, 2011 IP
  6. dlatua

    dlatua Notable Member

    Messages:
    3,985
    Likes Received:
    65
    Best Answers:
    0
    Trophy Points:
    235
    #6
    tested and worked!
    Can you modify this code, in the way to get the results in colon, like:
    aaa
    aab
    aac
    ...
    Also how could the code be modified in the way to add numbers from 0-9 in the combination?

    Thank you
     
    dlatua, Feb 4, 2011 IP