I can url encode text using the construct url column. But i have to add the protocol and the domain to the front of that text.
The problem is that i need to encode multiple sections of text that get joined together with the & symbol in between. (and various other symbols that i don’t want url encoded)
Simple eg. the cat sat on the mat & the dog ran off with the spoon
Url Encode: the%20cat%20sat%20on%20the%20mat%20%26%20the%20dog%20ran%20off%20with%20the%20spoon
But i need the & symbol to remain behind not turn into %26
I can easily encode (the cat sat on the mat) using Construct Url column BUT then i always get for example https://domain.com/pathname?pathname= added to it
eg. https://domain.com/pathname?pathname=the%20cat%20sat%20on%20the%20mat (i called my pathname… pathname so thats why that’s there)
So now i have strip everything up to and including the = and replace with nothing/blank.
This is easy with sheets but does anyone have some tricks using glide tables/editor.
I’m using Get Part of URL and the Replace All column but must use a new replace all column for each word or character that i need replaced, super tedious.
Would appreciate the help👍