Description |
This expression matches all fields from the format string of the printf/scanf functions. This is .NET version. It is based on Format Fields Specification at http://msdn.microsoft.com/en-us/library/56e442dc.aspx.
According to format specification: %[flags][width][.precision][{h|l|ll|L|I|I32|I64|w}]type
output matche groups will contain:
#1 - flags, #2 - width, #3 - precision, #4 - size prefix, #5 - type.
|