printf and formatting rules
Posted
by Stringer Bell
on Stack Overflow
See other posts from Stack Overflow
or by Stringer Bell
Published on 2010-05-15T01:34:13Z
Indexed on
2010/05/15
1:44 UTC
Read the original article
Hit count: 328
I'd like to know if all formatting rules of printf functions currently work (or are implemented) in F# ?
For instance, if I want to align arguments on 9 characters (padding with spaces or 0), I would use:
printfn "%9A %9A" arg1 arg2 //don't seem to work
Thanks!
© Stack Overflow or respective owner