-
如何使用DocX 库在 .DOCX 文件中替换一列单词
翻译 maninwest@Codeforge 作者:B. Clay Shannon@Codeproject使用 DocX 库替换 .docx 文件中的字任务我想替换英式英语的拼写为美式口语。例如, 替换 "colour" 为 "color", "centre" 为 "center", "plough" 为"plow", 等。我可以使用查找>替换来一个一个地替换,但是很麻烦。所以,我找到一个库 。为了使用这个 docx库,只需从 这里 下载(docx.dll)。在你的项目中添加到它的引用,然后添加此 using子句:using Novacode;
首先需要加载具有”错误"拼写的文档:string filename = string.Empty;
DialogResult result = openFileDialog1.ShowDialog();
if (result == DialogResult.OK)
{
filename = openFileDialog1.FileName;
}
else
{
MessageBox.Show("No file selected - hasta la vista and Ciao, baby!");
return;
}
using (DocX document = DocX.Load(filename))
{
document.ReplaceText("travelled", "traveled");
document.Save();
}
我们当然想以此完成所有词汇替换。首先,我们需要有一列单词,这样编码: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-25 21:24:19下载
- 积分:1
-
vb开发的IP炸弹来电显示资料。 vb开发的IP炸弹来电显示资料。...
vb开发的IP炸弹来电显示资料。 vb开发的IP炸弹来电显示资料。-vb development of IP bomb caller ID information. vb development of IP bomb caller ID information. vb development of IP bomb caller ID information.
- 2022-03-13 19:28:05下载
- 积分:1
-
This package contains a collection of geometry filters
This package contains a collection of geometry filters-- programs that
are for manipulating polgonal representations for 3D graphical objects.
This source code is undergoing revision, and I expect that a new
version of the code, together with many more filters, will be
available shortly.
- 2022-01-25 18:10:58下载
- 积分:1
-
use DirectShow realized Wince.Net platform multimedia files broadcast gong will...
利用DirectShow实现了Wince.Net平台下多媒体文件的播放功能,可以播放wmv、mpeg、mp3、wma等媒体文件。-use DirectShow realized Wince.Net platform multimedia files broadcast gong will be broadcast wmv, mpeg, mp3, wma, and other media files.
- 2022-01-22 16:19:21下载
- 积分:1
-
lucence客户端调用服务端的webservice
lucence客户端调用服务端的webservice lucence,客户端演示
获取服务端数据库类型,并转换到客户端。供参考。-lucence client-side call services webservice lucence, client-side demo access database type, and converted to the client. For reference.
- 2022-04-27 22:32:42下载
- 积分:1
-
半透明窗口,短小精悍,使用方便,操作简单!
半透明窗口,短小精悍,使用方便,操作简单!
-translucent window, small and easy to use, simple!
- 2022-06-27 00:14:11下载
- 积分:1
-
用ULM 制作的银行存款系统
用ULM 制作的银行存款系统--用例图,用于说明对象和属性的关系.-with ULM produced deposits in the bank system-- with cases map, used to describe the object and attribute relationship.
- 2022-04-17 16:57:32下载
- 积分:1
-
进程间通过油槽进程通信的源程序 可以运行通过的 C++编写
进程间通过油槽进程通信的源程序 可以运行通过的 C++编写-The process of inter-process communication through the fuel tank can be run through the source code of the C++ to prepare
- 2022-02-21 22:03:06下载
- 积分:1
-
MS Active Accessibility 接口技术编程尝试
MS Active Accessibility 接口技术编程尝试-MS Active Accessibility to programming interface technology
- 2022-03-04 04:18:52下载
- 积分:1
-
自动搜索串口
在串口通讯时可以自动搜索到电脑的串口设备并添加在combobox中,就这一个功能,一个小例子
- 2023-01-22 06:35:03下载
- 积分:1