在 MS Word 中快速搜索和替换样式

发布于 2024-12-01 00:34:32 字数 492 浏览 1 评论 0原文

我需要将 html 文件自动转换为 MS Word 文件,作为其中的一部分,我想删除 Normal (Web) 样式的所有 ocorances 并将它们替换为 Normal代码>.

我正在使用以下

$find = $word.Selection.Find
$find.Style = $word.ActiveDocument.Styles.Item("Normal (Web)")
$find.Forward = $True
$find.Format = $True
while ($word.Selection.Find.Execute())
{
    $word.Selection.Style = $word.ActiveDocument.Styles.Item("Normal")
    $null = $word.Selection.EndKey(5)
}

有效但速度很慢的方法。有更快的方法吗?

I have the need to automate conversion of html files into MS Word files, and as part of it I want to remove all ocorances of style Normal (Web) and replace them with just Normal.

I'm using the following

$find = $word.Selection.Find
$find.Style = $word.ActiveDocument.Styles.Item("Normal (Web)")
$find.Forward = $True
$find.Format = $True
while ($word.Selection.Find.Execute())
{
    $word.Selection.Style = $word.ActiveDocument.Styles.Item("Normal")
    $null = $word.Selection.EndKey(5)
}

which works but is slow. Is there a faster way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小霸王臭丫头 2024-12-08 00:34:33

找到了一个不能替代的方法,但具有预期的效果:

$style = $word.ActiveDocument.Styles.Item("Normal (Web)")
$style.Delete()

Found an approch which doesn't replace, but has the desired effect:

$style = $word.ActiveDocument.Styles.Item("Normal (Web)")
$style.Delete()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文