本文介绍了如何从word文件中读取除表数据之外的文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

HI,


在我的应用程序中,我必须通过排除其他形状(如表格,图表等)逐行读取单词(DOCX)文件中的内容。从下面的代码我能够读取内容,但它也包括表格中的文本。

 private void GetParaDetail(Word.Document doc)
{
foreach(Word.Paragraph para in doc.Paragraphs)
{
string temp = para.Range.Text.Trim();
}
}

我上传了一个文件到这个位置(https://1drv.ms/w/s!Ah-Jh2Ok5SuHcCKzdzlY6etFDv8),使用上面的代码为我顺序得到以下段落  

 1111111111111 
2222222222222
3333333333333
4444444444444
5555555555555




kkkkkkkkkkk


但我需要以下文字。我搜索了很多,但没有找到任何有用的信息。所有人都只参考上述代码。 

 1111111111111 
2222222222222
kkkkkkkkkkk


解决方案

HI,

In my application I have to read the content from a word(DOCX) file line by line by excluding other shapes(like table,chart etc). From the below code I am able to read the content but it also include the text from a table.

private void GetParaDetail(Word.Document doc)
        {
            foreach(Word.Paragraph para in doc.Paragraphs)
            {
                string temp = para.Range.Text.Trim();
            }
        }

I uploaded a file to this location(https://1drv.ms/w/s!Ah-Jh2Ok5SuHcCKzdzlY6etFDv8), by using above code for the file I got the below paragraphs sequentially   

1111111111111
2222222222222
3333333333333
4444444444444
5555555555555
.
.
.
.
kkkkkkkkkkk

but I need the below text. I searched a lot but didnt find any helpful information. all are referring the above code only. 

1111111111111
2222222222222
kkkkkkkkkkk
解决方案


这篇关于如何从word文件中读取除表数据之外的文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 07:05