vote up 1 vote down star

I have an mht file, I wish to get all the text of the mht. I tought about using regex, but I have other languages in the mht except english, so the text itself contains stuff like A7=A98=D6...

select all the text of a file viewed in your browser, and then copy and paste it into a notepad - this is what i need.

Thanks.

flag

1 Answer

vote up 1 vote down

Open the file in Internet Explorer and save it as plain text (UTF-8). :) If you need an automated solution, look for an mht to txt converter for your platform or programming language.

Actually, you can automate this in Powershell as well:

$ie = New-Object -ComObject "InternetExplorer.Application"
$ie.Navigate2("file:///C:/MyFile.mht")
$text = $ie.Document.documentElement.innerText
link|flag
I'm using C#, is there an mht to txt converter? How do I use powershell with a C# app? – Joker May 16 at 10:20
In that case you need the appropriate .NET library. You should tag your question with "c#" and ".net" to get more answers. – kimsnarf May 16 at 14:08
You can also call Powershell from your C# application. This won't be blazing fast but it should work. See for instance here: codeproject.com/KB/cs/… – kimsnarf May 16 at 14:32
You can access the same IE object through C# directly, see here: msdn.microsoft.com/en-us/library/… – kimsnarf May 16 at 14:55
kimsnarf - can you give a more detailed code for using ie object in C#? – Joker May 16 at 17:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.