设置列表格式
我有以下列表: (XXO NIL NIL O NIL NIL O)
我想将其格式化为如下所示:
X | X | O
--+---+--
| | O
--+---+--
| | O
我可能可以用我对 Lisp 和 的了解来拼凑一些东西>FORMAT
,但这可能会很糟糕。任何指示将不胜感激。
I have the following list: (X X O NIL NIL O NIL NIL O)
I'd like to format it to look like this:
X | X | O
--+---+--
| | O
--+---+--
| | O
I could probably cobble something together with what little I know about Lisp and FORMAT
, but it would probably be pretty gross. Any pointers would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于上面的格式字符串的一些解释。这里至关重要的是“~{”、“~}”和“~^”。一对匹配的波浪号大括号将列表作为输入参数并对其进行迭代。如果正在迭代的列表为空,则 ~^ 控制从该循环中提前退出。
相关文档 ~{ 和 ~^。
A little explanation about the format string in the above. Crucial here are the '~{' '~}' and '~^'. A pair of matching Tilde braces take a list as input argument and iterate over it. The ~^ controls an early escape from this loop, if the list being iterated over is empty.
Relevant documentation ~{ and ~^.