f# - printf and formatting rules -


I want to know that currently all the formatting rules for the printf function (or have been implemented) ) For example, if I want to align the argument on 9 characters (padding with space or 0), then I'll use it:

  printfn "% 9A% 9A" arg1 arg2 /  

Thanks!

check the docs

(and probably

)

Although I am not clear about the exact points of imagination and implementation, especially the% A specifier About, which does various magical things. I will see what else I can lose now ...


Comments