Ⅰ 如何在word的文檔中找到文本的源代碼
如果你會使用調試宏代碼,可以到這里去找。 開發工具——VB. 如果在功能區沒有見到,就打開word選項/常用/在功能區顯示「開發工具」選項卡。
Ⅱ C# 如何獲取Word 文檔里的內容 你是怎麼解決的、、求源碼展示、、
首先添加morcosoft word 12.0 object Library引用(低版本的com也可以)
///VS2005-WINXP(SP2)
using System;
using System.Collections.Generic;
using System.Text;
using Word;
namespace WordApp
{
class WordApplication
{
//獲取word文件的文本內容
public string DocToText(string docFileName)
{
//實例化COM
Word.ApplicationClass Word_App = new ApplicationClass();
object fileobj = docFileName;
object nullobj = System.Reflection.Missing.Value;//打開指定文件(不同版本的COM參數個數有差異,
//一般而言除第一個外都用nullobj就行了)
Word.Document wd = wordApp.Documents.Open(ref fileobj, ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj, ref nullobj, ref nullobj, ref nullobj,
ref nullobj, ref nullobj);
//取得doc文件中的文本內容
string outText = wd.Content.Text;
//關閉文件
wd.Close(ref nullobj, ref nullobj, ref nullobj);
//關閉COM
Word_App.Quit(ref nullobj, ref nullobj, ref nullobj);
//返迴文本內容
return outText;
}
}
}
參考:
http://blog.csdn.net/calizy/article/details/3178570
Ⅲ word如何看htm文件的源代碼
用「UltraEdit」吧,挺好使的,一次能打開挺多的,也不會太慢,最好還是一批批的來,萬一卡死了還要重來,在它的「搜索」菜單下有「替換」功能,有個選項能替換所有文件!
我用的是V15.10,不是最新的版本!
Ⅳ word怎麼查看HTML源代碼
打開方式選擇word就可以了。其實用記事本打開更方便
Ⅳ 怎麼查看word文檔的源代碼
DOCX格式:修改文檔的擴展名為ZIP,然後用解壓軟體打開後,就可以看到文檔的原代碼了。