From: A. S. on 22 Jul 2010 06:58 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 22 Jul 2010 07:28 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 23 Jul 2010 04:49 I believe something like this would work as well: FILENAME queryResults URL "%nrstr(http://www....&term=)&query";
|
Pages: 1 Prev: logistic regression error Next: Pointing to a folder location |