I have the following string:
mapMarkers.push(bap(map,'','marker.php/oaaa/BusShelter:BusShelter:BusShelter/EB:WB:EB/1/null/null/39.69643098429845/-104.88185718655586/null','','interactive_view:f=D0007.1.1.1|f=D0007.1.2.1|f=D0007.1.3.1',1, null, null, 1, null, null, "BusShelter"], true));
I'd like to extract the lat/long values as well as any values following f=
So for the example above, I should get the following attributes:
Lat=39.69643098429845
Long = -104.88185718655586
ID1 = D0007.1.1.1
ID2 = D0007.1.2.1
ID3 = D0007.1.3.1
Do I use a stringsearcher with a regex? If so, how?