From: A. S. on
I wrote something like

FILENAME queryResults URL "http://www....&term=&query";

but it seems SAS always tries to resolve all &s. But I only want to
resolve &query and leave the other &s as they are. "&&term" didn't
work either :(

What is the best way to do that?
From: RolandRB on
On Jul 22, 12:58 pm, "A. S." <the.gere...(a)googlemail.com> wrote:
> I wrote something like
>
> FILENAME queryResults URL "http://www....&term=&query";
>
> but it seems SAS always tries to resolve all &s. But I only want to
> resolve &query and leave the other &s as they are. "&&term" didn't
> work either :(
>
> What is the best way to do that?

Use %26 instead of an ampersand if you don't want it resolved.
From: Patrick on
I believe something like this would work as well:
FILENAME queryResults URL "%nrstr(http://www....&term=)&query";