Extract cordinate from url

I want to extract coordinate from a gmap url.

Google Maps.

or in Uipath how trimstart function works…

Hi,

Can you try the following expression?

strArray = System.Text.RegularExpressions.Regex.Match(strUrl,"(?<=/@).+?(?=/)").Value.Split(","c)

Then, strArray(0) and strArray(1) will be what you want.

Regards,

1 Like

Thanks for this…