Created
October 5, 2018 10:12
-
-
Save PrateekKumarSingh/fae2545297aa6d3aea5f95385100c0ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# formatting strings | |
# no numbers in braces will throw formatting ERROR in powershell | |
'firstname:{} lastname:{}' -f 'prateek','singh' | |
# use numbers in braces to define sequence of arguments consumed by the string | |
'a:{0} b:{2} c:{1}' -f 'red','green','blue' | |
# adding leading zero | |
'{0:d3}' -f 5 | |
# using hashtables for formatting | |
$coor = @{'latitude'= '31.24E'; 'longitude'= '-125.81N'} | |
"Coordinates: {0}, {1}" -f [System.Object[]]$coor.Values |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment