Hi. I have domain lists with something like 50000 domains. I need to sort them after TLD, how can I do this ?
How is the list stored? A .csv file? I would create a database table and import all domain names into it. The table would contain two fields: DomainName and TLD, then I would generate the generate a script to extract each domain's extension from the first field using the substr() function and insert it into the second field. Then you can sort the listing by TLD column as you please.
Its a txt file. The format is ***.com/forum *****.se/shop ***.co.uk and so on. And I do not know php or programming.