I've been stumped on this one for a bit now. I have the following string:
LAT: 6.90N LON: 80.58E ELEV: 1097.6M
I need to extract 6.90N,80.58E, and 1097.6M.
The problem is that I iterate through other files with similar formats. There are a few files with missing values or other characters (i.e. ***** if no value is present).
I want to be able to capture these as best as possible. Is there a way to write a regular expression to capture the values between LAT:, LON:, and ELEV: without including the spaces?