gear Posted January 30, 2007 Posted January 30, 2007 If someone has the script to transfer HTML file to TXT file. I believe Autoit can do it well. Gear
lod3n Posted January 30, 2007 Posted January 30, 2007 Here's my html to text conversion UDF: Func _Html2Text($sHTML) local $oHTML = ObjCreate("HTMLFILE") $oHTML.Open() $oHTML.Write($sHTML) return $oHTML.body.innerText EndFunc $html = fileread("test.htm") $txt = _Html2Text($html) ConsoleWrite($txt & @crlf) [font="Fixedsys"][list][*]All of my AutoIt Example Scripts[*]http://saneasylum.com[/list][/font]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now