标签: lisp printing common-lisp center
我有一个我想要打印的字符串。打印时可以将它居中吗?
答案 0 :(得分:11)
使用〜<格式化指令。这将返回“你好那里”在70列中心。
(format nil "~70:@<~A~>" "hello there")