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.
我想知道是否有人可以帮助我。
我需要获取变量中的数字数量。
例如:
number = Int(34324)
将包含 5 等等。
干杯
使用Len()功能:
Len()
digitCount = Len(CStr(number))