将字符串转换为 vlang 中的数组

Convert a string to an array in vlang

我正在学习V,就我的尝试而言,虽然V字符串是字节数组,但数组方法不适用于字符串。所以我想将字符串转换为数组。我试过搜索这个但没有成功,我在 Go 中找到了一些东西,但它在 V:

中不可用
[]byte("Here is a string....")

在V中有什么方法可以将字符串转换成数组吗?

您可以使用 string.split(delim string) to just array and string.bytes() 作为 arraybytes:

Welcome to the V REPL (for help with V itself, type `exit`, then run `v help`).
V 0.2.2 8650ec6
Use Ctrl-C or `exit` to exit, or `help` to see other available commands
>>> x := "test"
>>> x.split("")
['t', 'e', 's', 't']
>>> x.bytes()
[t, e, s, t]