|
-f operator Why and how does this work?
PS I:\>Get-Date -f MMddyyHHmmss
052708131411
Normally the format pattern on the left side of -f, and the expression on
the right:
PS C:\> "{0:n}" -f 1234567
1 234 567,00
But on the example on the top it seems for me that it's the other way
around. How does that work?
--
Tibor |