7 lines
175 B
Tcl
Raw Normal View History

2014-02-05 16:43:59 -08:00
package require TclCurl
set escaped [curl::escape {What about this?}]
puts "String to escape: What about this? - $escaped"
puts "And the reverse: [curl::unescape $escaped]"