Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Parsing problem

From: tomc:darkwing:uoregon at: 13-Nov-2002 22:21

with a well formed url 'decode-url does even better ...
>> u: "http://www.asdfasdf.com:123/path/path/file.htm"
== "http://www.asdfasdf.com:123/path/path/file.htm"
>> w: decode-url u >> probe w
make object! [ user: none pass: none host: "www.asdfasdf.com" port-id: 123 path: "path/path/" target: "file.htm" ]
>>
On Thu, 14 Nov 2002, Blackeye Silverseeker wrote: