假设我有一个像这样的符号列表......
q) list
`hello_world.q
`hello_world_2.q
我想把它分开,所以我最终得到这个字符串列表......
q) new_list
"hello_world"
"hello_world_2"
这是怎么做到的?
我可以使用类似的东西来做到这一点...
string1: "`" vs string list[0]
string1: "." vs string1[1]
但不知道如何做完整列表
假设我有一个像这样的符号列表......
q) list
`hello_world.q
`hello_world_2.q
我想把它分开,所以我最终得到这个字符串列表......
q) new_list
"hello_world"
"hello_world_2"
这是怎么做到的?
我可以使用类似的东西来做到这一点...
string1: "`" vs string list[0]
string1: "." vs string1[1]
但不知道如何做完整列表
我正在尝试迭代目录并获取每个文件的文件路径+文件名。
例如,我用来\cd
输入/tmp
我想要迭代的目录,其中有两个文件......
hello_world_1.q
hello_world_2.q
然后尝试以下操作...
directoryPath: "/tmp"
fileList: directoryPath ,/: key ` sv get directoryPath
其中 fileList 是
"/tmp/hello_world_1.q"
"/tmp/hello_world_2.q"
但相反,我在 处收到类型错误sv
。有人知道可能是什么问题吗?
注意:看起来我收到类型错误的原因是因为get directoryPath
似乎没有做任何事情
我查过这个...
和...
key `:directoryPath
但这似乎没有任何作用。