根据指定参数从单词中抓取一个字符

Grab a character from a word based on specified parameters

假设我有几个不同长度的单词,我想让 MsgBox 为每个单词显示倒数第三个字符。我将如何使用 WordVBA 做到这一点?

例如:

Stack would return "a"
123.45 would return "."
Agent001 would return "0"

etc

谢谢!

查看左、右和中(有或没有反向)。传统方式。

Left(Right(A,3),1)

Mid(A, Len(A) - 3, 1)