Extract '#' from URL

Does anyone know how I can extract token from the browser URL? Your help is much appreciated. I’m looking for a Bubble method, custom plugin will suffice.

I tried with Get parameter from page URL, but that doesn’t work since this is not a parameter.

https://demo-app.io/version-test#token=92822e2a4beb8e

Hi @nocodeventure,

Try with regex.

(?<=token\=)([^&]+)

image

Result:

image

6 Likes

Love it, thanks a lot!

1 Like