Extract parameter from a URL that is stored in database

Hi,

I have this URL stored in my database:

https://www.google.com/maps/place/?q=place_id:ChIJBeYq0UQt9I4Rshe5gUWEMyY

I need to extract:
ChIJBeYq0UQt9I4Rshe5gUWEMyY

And display it in a text element.

How can I do this?

Hi there, @pachocastillosr… if I understand your post correctly, you could use the :split by operator and use a colon as the character to split by. Then, grab the last item, and you should be good to go. So, something like this…

split

Hope this helps.

Best…
Mike

1 Like

Works perfectly, thanks!

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.