-
如何使用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
-
an SMS on the way to the small program downloaded welcome!
一个关于手机短信手法的小程序,欢迎下载!-an SMS on the way to the small program downloaded welcome!
- 2022-02-15 09:13:36下载
- 积分:1
-
求闰年的算法,具体请详细阅读文本中算法,绝对没有错。课直接复制上VC运行...
求闰年的算法,具体请详细阅读文本中算法,绝对没有错。课直接复制上VC运行-Seeking a leap year algorithm, please read the text of a specific algorithm, is absolutely not wrong. VC running on a direct course to copy
- 2023-08-28 12:05:03下载
- 积分:1
-
企业短信助理源代码 具体内容由于程序较长,没有自习研读。...
企业短信助理源代码 具体内容由于程序较长,没有自习研读。-Enterprise message source code of the specific content of the Assistant as a result of the procedure is longer, there is no study hall.
- 2022-02-10 02:26:57下载
- 积分:1
-
C++ Encoding, shortest path, breadth of search, the depth of search, such as map
C++编码,最短路径,广度搜索,深度搜索等图相关函数实现-C++ Encoding, shortest path, breadth of search, the depth of search, such as map-related function
- 2022-03-12 07:27:26下载
- 积分:1
-
用于实时显示指定的文件内容,方便调试jsp/java时,显示其生成的debuglog。...
用于实时显示指定的文件内容,方便调试jsp/java时,显示其生成的debuglog。-designated for real-time display of the contents of the documents to facilitate debugging jsp/java, the show generated debuglog.
- 2022-01-26 07:30:37下载
- 积分:1
-
一个用户登录身份验证的安卓应用程序
开发一个应用程序来验证用户登录时正确的凭证输入和显示信息。
- 2022-05-23 22:37:04下载
- 积分:1
-
WAV压缩成MP3格式
将Wav格式压缩成Mp3-to Wav compressed into MP3 format
- 2022-10-27 11:20:04下载
- 积分:1
-
3ds file loader with opengl
(GLUT LIBRARY)
3ds file loader with opengl
(GLUT LIBRARY)
- 2022-06-01 23:23:09下载
- 积分:1
-
学习了这些基本够用了.
学习了这些基本够用了.-It is enough for you if you have learned these!
- 2023-03-16 16:05:03下载
- 积分:1