gpt4 book ai didi

ms-access - 有没有办法评估vba中的变量?

转载 作者:行者123 更新时间:2023-12-04 19:14:50 24 4
gpt4 key购买 nike

我有一个变量 newItem。我想将存储在 newItem 中的值放入一个字符串中。我以为我可以用...来完成这个

myString = eval(newItem)

...但是它不起作用。

有什么方法可以在 Access vba 中评估变量?

最佳答案

Eval 是一个函数,它会像执行代码一样执行给定字符串中的文本。

我想你要找的是 CInt:

Dim s as String : s = "15"
Dim i as Integer : i = CInt(s)
'at this point, i = 15, and s = "15"

同样,您应该查看 CStr、CLng、CDate 等。

关于ms-access - 有没有办法评估vba中的变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2404663/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com