Evaluate an Variable in a string

$animal = 'fox'
"The quick brown $animal jumps over the lazy dog."
Details
Use to insert a value in a string based on the variable

Example
PS C:\> $animal = 'fox'
>> "The quick brown $animal jumps over the lazy dog."

The quick brown fox jumps over the lazy dog.