I've got a string
csv
that holds PORTCODE and latitude longitude coordinates of a location. Using these values, I plot markers on a google map
.
Example CSV string:
ANC|61.2181:149.9003,
ANC|61.2181:149.9003,
TLK|62.3209:150.1066,
DNL|63.1148:151.1926,
DNL|63.1148:151.1926,
DNL|63.1148:151.1926,
TLK|62.3209:150.1066,
TLK|62.3209:150.1066,
ALE|60.9543:149.1599
I want to automatically number SIMILAR PORTCODE sequences separated by pipe symbol '|' for PORTCODEs that are EXACTLY consecutive.
Desired output:
ANC|61.2181:149.9003:1|2,
TLK|62.3209:150.1066:3,
DNL|63.1148:151.1926:4|5|6,
TLK|62.3209:150.1066:7|8,
ALE|60.9543:149.1599:9
Is there any solution using jquery/javascript/c#
?