I have problem dealing with a string in a line, For example i have the following lines in a .txt file:
ussdserver link from host /127.0.0.1:38978(account smpp34) is up|smpp34|2012-10-28 17:02:19
ussdserver link from host localhost/127.0.0.1:8088(account callme) is up|callme|2012-10-28 17:02:20
I need my code to get the word after "account" (in the first line it's smpp34) and the word "up" (after the "is" word).
I thought about using String.charAt() method but it doesn't work here because the words that I need can be in different places, as shown in the example above.