-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Format specifiers galore #20
Conversation
For example: `sprintf "%05f" 42.5` outputs `042.5`
Left-justify with zero-padding is not possible using .NET format strings
Printf-style format specifiers, are supported via translation to an equivalent .NET-style format strings when possible1. This ensures that the original object, as well as the formatted value, is preserved. .NET-style format strings are supported in the same way as regular Log calls, by just passing them through. Footnotes
|
logf
should emulateprintf
format specifiers #6%x
and%X
format specifier #13%e
and%E
format specifiers #17