Word 返回的单词列表无效

发布于 2024-10-22 19:15:33 字数 244 浏览 4 评论 0原文

在 Word 插件中,我用来

this.Application.ActiveDocument.Words;

获取当前文档中所有单词的列表。现在,当我解析这个列表时,我发现 .\r 也在这个列表中。为什么 Word 会考虑这些词?我还查看了状态栏中的字数,这也是错误的,对于我的文档中的 7 个字,状态栏显示 9 个字。

In an Word addin, I'm using

this.Application.ActiveDocument.Words;

to get a list of all the words in the curret document. Now when I parse this list, I found the ,, . and \r are also in this list. Why is Word considering these words? I also looked at the word count in the status bar and that was wrong too, as for 7 words in my document the status bar shows 9 words.

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

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

发布评论

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

评论(1

第几種人 2024-10-29 19:15:33

看来还是有特色啊

从:
此处

注意标点符号和段落标记文档中包含在 Words 集合中。

还发现:

If SingleWord < "A" Or SingleWord > "z" Then SingleWord = "" 'Out of range?

here

对我说,您可以通过测试小于 A 或大于 z 的“单词”来从集合中排除标点符号。

Looks like it's a feature.

from:
here

Note Punctuation and paragraph marks in a document are included in the Words collection.

also found:

If SingleWord < "A" Or SingleWord > "z" Then SingleWord = "" 'Out of range?

here

which says to me you can exclude punctuation from your set by testing for 'words' less than A or greater than z.

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