I have a text file, and loop though the file like this:
for ( int i = 0; i < this.textLines.size(); i++ ) {
String tempString = textLines.get( i );
So now I have tempString
containing something like:
46.102.241.199:3128 0.2990 Transp. NN N 100% 2011-11-19 17:56:02
What I want to to is return the IP:PORT part, in this case: 46.102.241.199:3128
How can I do that?