Jump to content

Recommended Posts

Posted

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]

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...