vote up 2 vote down star
1

I have a string that I would like to print . Is it possible to center it when printing ?

flag

73% accept rate

1 Answer

vote up 6 vote down check

Use the ~< formatting directive. This will return "hello there" centered within 70 columns.

(format nil "~70:@<~A~>" "hello there")
link|flag
Thank you! Can you point me in the direction of other examples of format? – Vhaerun Oct 17 '08 at 19:37
Here is the Hyperspec section on format: lispworks.com/documentation/HyperSpec/… – Nathan Sanders Oct 17 '08 at 19:39
Thanks Nathan! I appreciate it ! – Vhaerun Oct 17 '08 at 19:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.