ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Find And Run Robot

[Solved] Multiple parameters to URL?

(1/3) > >>

vbmark:
I'm having some trouble with this custom Alias.

In FARR I want to be able to type something like this:

car ford fusion:2007

And have the results go to something like, for example...

http://www.car.com/q=ford+fusion%3a2007

I just can't figure out how to do the multiple parameters.

Thanks!

Nod5:
Make a new alias called "car"
Under Regular Expression Pattern put

--- ---^car (.*)$
and under results put

--- ---car $$1|http://www.car.com/q=$$1
Then click Ok.

Type "car ford fusion:2007" in FARR to launch http://www.car.com/q=ford fusion:2007
Spaces isn't replaced with plus signs in the search but it may still work.

mouser:
It may work exactly as Nod5 says, but you can also use
You can use $$u1 instead of $$1 to have FARR urlencode the spaces and special characters when doing a web search.

vbmark:
Using $$u1 was what I needed to make it work how I wanted.  Thanks for that.

However, once I tried that, I see now that what I really need is for this:

car ford fusion:2007

to be turned into this:

...bla.com/?make=ford&model=fusion&year=2007

Is there a way to transform that FARR command into those parameters?

mouser:
yep, you just need a regex with multiple capture groups.  see if you can figure it out, if not someone good at regex will be able to post a solution.

note that the farr alias group configuration where you specify the regular expression has a place where you can test things out -- you can use that to experiment.

Navigation

[0] Message Index

[#] Next page

Go to full version