如何使用Word 2007 VBA复制所有文本并将其替换为for rows csv文档
如何使用Word 2007(或Word 2003)VBA复制所有文本并将其粘贴到四行csv文档中。例如:“我爱这个世界”。这将是:
I - Line 1 - page 1 - Paragraph 1
love - Line 1 - page 1 - Paragraph 1
the - Line 1 - page 1 - Paragraph 1
word - Line 1 - page 1 - Paragraph 1
How use Word 2007(or Word 2003) VBA to copy all text and paste it into a four rows csv document. For example: "I love the world". It will be:
I - Line 1 - page 1 - Paragraph 1
love - Line 1 - page 1 - Paragraph 1
the - Line 1 - page 1 - Paragraph 1
word - Line 1 - page 1 - Paragraph 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下代码应输出到 .csv 文件。
注意!首先,请添加对 Microsoft Scripting Runtime dll (scrrun.dll) 的引用:
从 VBA 窗口“工具”->“引用”->“检查 Microsoft Scripting Runtime dll”
这是有效的代码(您可以创建宏和将代码放入其中):
您可以根据您的需要按摩它......
希望这有帮助。
The following code should output to .csv file.
Note! First, please add reference to the Microsoft Scripting Runtime dll (scrrun.dll):
From the VBA window Tools->References->Check Microsoft Scripting Runtime dll
Here is the code that works (you can create macro and place the code inside it):
You can massage it based on your needs...
Hope this helps.