digitaldj wrote:Is there a way to strip html codes out of the way when using http::geturl?
Not using http::geturl, there isn't a way to strip html codes..
But after you have retrieved the contents of the page, you can
use tcl commands like regsub to do the job for you.
For starters,
ie: regsub -all {<[^>]*>} $data {} data