Right-clicking a google map gives a text string:
12.911116071141791, 100.87709549618398
How can I separate that into two separate strings:
12.911116071141791
and
100.87709549618398
Right-clicking a google map gives a text string:
12.911116071141791, 100.87709549618398
How can I separate that into two separate strings:
12.911116071141791
and
100.87709549618398
Hi there, @c.knight55… you can use the :split by operator with the character to split by being a comma. Then, add the :first item operator to the expression to get the latitude, and add the :last item operator to the expression to get the longitude.
Best…
Mike
Thanks