Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / domain

Domain Name Generator

5.00/5 (1 vote)
1 Sep 2014CPOL 10.8K  
Using Excel to generate random domain names

Introduction

If you know how to build a website, you also know how hard it is to generate a cool domain name. This is also true for signing up a new email address, Facebook account, or for creating a nickname in your MMORPG game.

Background

A good domain name should be easy to read, write, understand and memorize. Short names could be 1 word, 2 words or 3 words long.

Using the Code

First, I pulled a list of 5,000 most common words in English to Excel.

Then I use random number generation and VLookup to create my simple word generator which automatically refreshes itself every time I open or interact with it.

The following Excel functions are in use:

C++
=RANDBETWEEN(1,5000)

=VLOOKUP(C2,$A$1:$B$5001,2,FALSE)

=PROPER('text')

Together:

C++
=PROPER(VLOOKUP(D23,$B$7:$C$5007,2,FALSE))&PROPER(VLOOKUP(E23,$B$7:$C$5007,2,FALSE))

Here's the link to my spreadsheet on OneDrive: http://1drv.ms/1lEtEcv

How it looks:

Image 1

Points of Interest

By changing the list of initial words to fit your own circustances, you can create a customized generator for your own purposes (medical, engineer, marketing, ...).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)