Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这里,我想通过使用 VBA 来获取 word 中的字符名称。例如
笔记:
ASC()并 ASCW()用于获取字符值(eg: asc("a") = 97),例如是否有任何方法可以获取字符名称或其他?
ASC()
ASCW()
(eg: asc("a") = 97)
干得好。
使用此表,您可以一次获取每个字符,并将其与我列出的表进行比较。所以,如果你有一个å,那么使用ASC(å)你会得到229,然后在你的桌子上进行查找,你会得到“拉丁小写字母 a 上面有环”。
对每个字母重复。