I want split bellow string with numbers means coordinates. Please help me split pattern in java
34°6′19″N 74°48′58″E / 34.10528°N 74.81611°E / 34.10528; 74.81611This is very good place for tour
This string I want separate string
1. 34°6′19″N 74°48′58″E / 34.10528°N 74.81611°E / 34.10528; 74.81611
2. This is very good place for tour
I have used possible patterns, but not get proper results
1. (?=\\d)(?<!\\d)
2. (?<=[0-9])(?=[a-zA-Z])
3. [^A-Z0-9]+|(?<=[A-Z])(?=[0-9])|(?<=[0-9])(?=[A-Z])