Composite Format String

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

Example
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.