$string = 'The quick brown {0} jumps over the lazy {1}.'
$string -f 'fox','dog'
Allows for the easy replacement of certain characters. Great when dealing with multiple languages.
PS C:\> $string = 'The quick brown {0} jumps over the lazy {1}.' >> $string -f 'fox','dog' The quick brown fox jumps over the lazy dog.