akira
2 discussion posts
I love the program but I would like to be able to add things after whats being replaced..
What I'm doing is automatically reformatting URL's for google adwords. So when I copy a http://mywebsite.com it automagically replaces it with
"http://www.mywebsite.com/hvp_referrer.php?referrer=googleppc&url="
then it has whatever was after that. But as far as I can tell there is no way to add something to the very end of the replace text...does this make sense?
i need it to look like when i copy http://mywebsite.com/products/product.html it spits out "http://www.mywebsite.com/hvp_referrer.php?referrer=googleppc&url=product/products.html&k="
basically i need to be able to add &k= to the very end of the replace.
if this doesnt make sense I could go a little more in depth.
This makes complete sense, I just haven't been able to think of a good way to work in a feature like this without making it very complicated. I was going to support RegEx replacements, but not very many people can write a RegEx. I may end up extending the "Text Replace" function to include variables. So, for example, you could use this:
Match: %text%
Replace: %text%?k=
This would match the clipboard text and replace it with the text plus your string on the end. This would be the easiest way to handle this, although not the most flexible. What do you think?
akira
2 discussion posts
this would work out great for what I need. Anyway you could throw that in ASAP and put it out?