I'm trying to create a program that reads this text file with a list of domains but it also has a lot of other unnecessary things such as the title, the header of each domain, etc. All I want is the domains.
Now, the one thing in common is that all the domains have a "." somewhere or even two. Is there a way to check if a word in that .txt file has a ".", then add it to another string?
I've looked around, but I've only found String Contains, not word contains.
Now if that doesn't exist, is there a way to separate each word into a string array and then test each word individually with a for loop?
Here's an example:
Domain list name the first domain ip magicdomain.com name the second domain ip magicdomain2.com
etc.