i\'m trying to swap latitude and longitude values in notepad++ with regular expressions. i tried to search some guide on the web but i didn\'t understand how to do. i have a
Try with following regex:
(\d+\.\d+),(\d+\.\d+)
and replace it with:
\2,\1