本文介绍了VBA 中的哪个命令可以计算字符串变量中的字符数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我有这个变量:
word = "习惯"
word = "habit"
VBA 中的哪个命令将允许我计算这个变量中有多少个字符(在我的例子中是 5).
which command in VBA will allow me to count how many characters are there in this variable (in my case it's 5).
重要提示:变量word"只包含一个词,没有空格,但可能包含数字和连字符.
Important: the variable "word" contains only one word, no spaces, but may have contain numbers and hyphens.
推荐答案
你的意思是计算字符串中的字符数?这很简单
Do you mean counting the number of characters in a string? That's very simple
Dim strWord As String
Dim lngNumberOfCharacters as Long
strWord = "habit"
lngNumberOfCharacters = Len(strWord)
Debug.Print lngNumberOfCharacters
这篇关于VBA 中的哪个命令可以计算字符串变量中的字符数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!