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 中使用Split函数:
dim myArray, myString myString = "This is an example" myArray = Split(myString)