Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用宏从 word 文档创建 xml,我想将复制的文本从 word 文档粘贴到 xml,我使用下面的代码来选择文本
Sub ShowSelection() Dim strText As String strText = Selection.Text End Sub
如何将选定的文本粘贴到 xml 中?
我不了解 Word 宏,但您为什么不直接将 word 文档作为字符串读取,以您最喜欢的语言手动将其解析为 XML?