I want to read a certain part of a String in this String:
<test>3:35</test>
The part I want to read is 3:35, but I just can't seem to figure it out. What I have currently is:
s.skip("<test>");
t = s.next();
s.skip("</test>");
But of course, all I get back is 3:35</test>
because I skip after t = s.next()
Can anyone explain the way too easy solution I'm probably not seeing here?