Hi Jon,

> space, like "A B", it will turn up in Pico Lisp like "A+B". Is there 

As a built-in function there is only 'ht:Pack', which is used e.g. in
"lib/http.l".

But it just decodes hex patterns like "%20":

   : (ht:Pack (chop "A%20B%20C"))
   -> "A B C"


If you are only concerned about '+', you could do:

   : (pack (replace (chop "A+B+C") "+" " "))
   -> "A B C"

Does this help?

Cheers,
- Alex
-- 
UNSUBSCRIBE: mailto:[EMAIL PROTECTED]

Reply via email to