Pretty printing tables

Hi,

I am trying to pretty print tables for textual output.  The following table:

(txt:(“abc”;" ef";" hi";“jkl”);flt:1.2 3.45 6.789 10.11121314)

becomes:

txt   flt


“abc” 1.2

" ef" 3.45

" hi" 6.789

“jkl” 10.11121

Is there any way to adjusting the printing to remove the quotes and right justify the numbers?  I have been poking around .Q.S, .Q.s1 and .Q.s2, but my knowledge of k is minimal.  Thanks for your help in advance.

Victor

My apologies for not trying a bit harder before posting - I figured out that I need to alter .Q.s1 from {-3!x} to {ssr[-3!x;“"”;“”]} to remove the quotes around strings.  Now I guess I just need to figure out how to right justify numbers.