If you have a clean set of entries you can use the following:
Code:
Sub SplitLat()
Dim sMixed As String
Dim sOutput As String
Dim sFind As String
sMixed = "latitude 123 23 53"
sFind = "latitude"
' Replace method
If InStr(sMixed, sFind) <> 0 Then ' If the text is found
sOutput = Trim(Replace(sMixed, sFind, "", , , vbTextCompare))
End If
End Sub
Cheers
Shasur