so I’ve added added a google command, but it bugs me that every time I attempt to search for something that requires a space to separate between words, the link gets created with only the first word that was added. SO, unless you know to copy the beginning of the https all through the end of what you type, you won’t get the correct answer. I’ve tried quite a few replacements but don’t work but essentially, I want to replace a space for %20 and I keep getting “Unexpected end of input”. Here is some examples of what I’ve tried:
I feel like what I’m missing is not difficult but I’ve also tried so many options that I feel the syntax is incorrect. I just don’t understand where to fix it.
There’s not much difference between your code and mine, I just use the right tools:
I used $(query) so the spaces don’t get encoded, so I replace them with +.
If I used $(querystring), the spaces are encoded to %20 so I need to replace the encoded characters with +.
After than I simply added a step where I create a variable q, which I could have bypassed, it’s just an habit.