From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <003201c23c08$572ee050$6501a8c0@KIKE> From: "matt" To: <9fans@cse.psu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: [9fans] urlencoder Date: Sun, 4 Aug 2002 23:43:20 +0100 Topicbox-Message-UUID: d81c7ca2-eaca-11e9-9e20-41e7f4b1d025 forgot to mention how it works say it's registered on %U print("%U", string) this would url encode the string and replace spaces with %20 print("%+U", string) this would url encode the string and replace spaces with + (for http POST and GET requests) print("%-U", string) this would decode a string (in either + or %20 format) M