-
如何使用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
-
Emptying the Recycle Bin
Emptying the Recycle Bin
- 2022-04-17 11:10:31下载
- 积分:1
-
Curriculum design, results, video player, can play mp3, avi and other formats. S...
课程设计的成果,视频播放器,能播放mp3,avi等格式。用skinfeature加载了一个皮肤。-Curriculum design, results, video player, can play mp3, avi and other formats. Skinfeature loaded with a skin.
- 2022-09-21 21:35:03下载
- 积分:1
-
管理系统
强大的管理系统,功能齐全,界面漂亮。
- 2023-08-23 04:45:09下载
- 积分:1
-
组合框的自绘,用的是DC呀,想画什么都可以。现在是以画一条直线为例,其它的可以类推了!...
组合框的自绘,用的是DC呀,想画什么都可以。现在是以画一条直线为例,其它的可以类推了!-portfolio drawn from the box, using a DC ah, wanted to paint anything can be. Now is painting a straight line as an example, the other could analogy!
- 2022-02-10 06:04:13下载
- 积分:1
-
动态链接库编程示例,可以通过本demo学习编写DLL的框架
动态链接库编程示例,可以通过本demo学习编写DLL的框架-Dynamic Link Library programming examples, can be prepared through this demo to learn a framework for DLL
- 2022-03-02 10:29:31下载
- 积分:1
-
可以获取电脑总的磁盘容量和剩余磁盘时间,其中包括定时查询和系统托盘设计,剩余容量不足警告等内容。...
可以获取电脑总的磁盘容量和剩余磁盘时间,其中包括定时查询和系统托盘设计,剩余容量不足警告等内容。-The computer can get the total disk capacity and remaining disk time, including the timing query and the system tray design, the remaining capacity of less than a warning and so on.
- 2022-04-30 08:12:13下载
- 积分:1
-
经典图书《numeric recipes in C》方法的所有算法C语言实现,基本涵盖了目前国内同类教程的所有基本算法的实现,强烈推荐...
经典图书《numeric recipes in C》方法的所有算法C语言实现,基本涵盖了目前国内同类教程的所有基本算法的实现,强烈推荐-Classic book " numeric recipes in C" method of all algorithms C language realization of the basic coverage of the current curriculum of similar realization of all fundamental algorithms and strongly recommended
- 2022-04-28 20:49:14下载
- 积分:1
-
VC++访问和修改系统注册表。 很不错哦
VC++访问和修改系统注册表。 很不错哦-VC access and modify the system registry. Oh, very good
- 2023-03-19 12:10:04下载
- 积分:1
-
ce系统下面的一个浏览注册表的应用程序,只是实现了浏览的功能,新建和修改的功能还不是很晚上,有兴趣的可以继续修改完善...
ce系统下面的一个浏览注册表的应用程序,只是实现了浏览的功能,新建和修改的功能还不是很晚上,有兴趣的可以继续修改完善-ce system registry following a browser application, only the function of a browser, and modify the functions of the new is not very evening, are interested can continue to revise and improve the
- 2022-06-13 07:11:36下载
- 积分:1