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,
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…
Hope this helps.
Best…
Mike
Works perfectly, thanks!
This topic was automatically closed after 70 days. New replies are no longer allowed.