No, you can't.
From your links link to the MSDN articles about standard format strings, you'l you'll find:
The actual negative number pattern, number group size, thousand separator, and decimal separator are specified by the current NumberFormatInfo object.
So the standard formatting specifiers will vary depending on which culture the program is running under.
Since your custom formating specifies exactly how the number is going to look, whatever the culture the program is running under. Its allways gonna look the same.
Since the standard formatting will vary depending on which
The culture the program is running onunder isn't known during compile time, it's not possible to do this mapping without knowing the current culturea runtime property.(...and current culture
So the answer isknown only at runtime...): No, you can't map automatically, because there isn't a one-to-one consistent mapping.
