在Rebol中如何获取对象路径名称(字符串)?
假设我
list: [system/history system/prompt]
想转换为
list-string: ["system/history" "system/prompt"]
这可能是一个明显的答案,但我看不到任何:)
谢谢。
Let's say I have
list: [system/history system/prompt]
I want to convert to
list-string: ["system/history" "system/prompt"]
This may be an obvious answer but I can't see any :)
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或者
Or
在 Rebol 中有很多简单的方法可以做到这一点。使用解析很有趣:
There's many simple ways to do this in Rebol. It's interesting to use parse:
另一种方法是更新现有的 list 块:
Another way, that updates the existing list block:
假设原始列表中从未有空格(如您的示例所示)
Assuming you never have spaces in the original list (as is true in your example)