I'm new to Java, and have been looking for a solution.. perhaps i'm not searching on the right terminology.
My goal: I have a Java class that uses webdriver to go to a page, perform a search... and output the results. The output results have plain text with URLs. All I care about are the URL's returned. So basically, I want to take my output like:
Search result 1
http://www.somesite.com/blahblahthis is a site from the search results.
but all I want is the URL, i want to dump the rest of the output. I've looked into 'parsing in java' but not finding what i'm looking for. Any pointers would be much appreciated.