如何使用 VBA 从 word 文档中将文本文件另存为 UTF-8 编码?

How to save as text file as UTF-8 encoding from word doc using VBA?

我已经为 html 转换创建了一个 VBA 宏。转换过程完成后,当我单击命令按钮时,word 文档应以相同的路径和相同的文件名保存为 UTF-8 编码的“.txt”文件。

可以做到吗?

您需要将适当的参数传递给 SaveAs 方法:

ActiveDocument.SaveAs _
    FileName:="C:\My\Path\Textfile.txt", _
    FileFormat:=wdFormatText, _
    Encoding:=65001