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.
我的 vbscript 文件中有一个字符串。我想将字符串作为代码执行。例如,字符串可以是 'msgbox("hello")'。但是,eval 函数只接受数字或字符串操作。我应该如何执行代码?我总是可以创建一个新文件并将该字符串写入文件,执行文件并删除它,但我正在寻找一种更好的方法来做到这一点。
也许令人惊讶的是,您可以使用Execute语句来做到这一点。它甚至在Eval 函数的文档中被引用。