使用 C# 识别 MS Word 文档中的标题
我需要分别识别 MS Word 文档中的标题和普通文本,并将它们放在 Excel 工作表的两个不同列中。这是一个使用 C# 的 VSTO 应用程序。
I need to identify the headings and normal texts in a ms word document separately and put them in two different columns of an excel sheet. This is a VSTO application using C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是避免使用本地化样式名称的方法:
This is how You avoid using localized style name:
这是单词部分的一个简短循环。获取段落样式的名称,并检查其名称。该名称将根据文档模板中定义的内容而有所不同。
Here's a short loop for the word part. Get the name of the style for a paragraph, and check it's name. The name will differ according to what is defined in your document template.