need help reading lines!

i need some help trying to use the bufferedreader to read lines, basically i need to read a line similar to the line below:Edinburgh 55;57N 03;13Wthen take the integer values from that line and insert them into another method, can anyone help me?
[267 byte] By [da_master_of_nuthina] at [2007-11-26 18:38:18]
# 1

Use a BufferedReader (or a Scanner) to get Strings for each individual line. Do you know how to do that?

Then you can use regular expressions or something like StringTokenizer to pick out the individual elements. Or you could use a Scanner to do it. Or you could use something like StreamTokenizer.

The choice will depend on the details of the project or the file format.

It's probably easiest to use a regexp.

Offhand, a regexp like this may work:

^(.*) (\d+);(\d+)([NESW]) (\d+);(\d+)([NESW])$

But that's just an initial guesstimate.

paulcwa at 2007-7-9 6:12:22 > top of Java-index,Java Essentials,New To Java...