HERE-STRINGS

$string = @"
"The quick brown fox jumps over the lazy dog"  is an English-language pangrama sentence
that contains all of the letters of the alphabet. It is commonly used for touch-typing
practice, testing typewriters and computer keyboards, displaying examples of fonts, and
other applications involving text where the use of all letters in the alphabet is desired.
Owing to its brevity and coherence, it has become widely known.
"@
$string
Details
Helpful for multiple lines, quotation marks, and all unknown strings
Use double quotes to evaluate variables and expressions and single quotes for literal

Example
PS C:\> $string = @"
>> "The quick brown fox jumps over the lazy dog"  is an English-language pangrama sentence
>> that contains all of the letters of the alphabet. It is commonly used for touch-typing
>> practice, testing typewriters and computer keyboards, displaying examples of fonts, and
>> other applications involving text where the use of all letters in the alphabet is desired.
>> Owing to its brevity and coherence, it has become widely known.
>> "@
>> $string

"The quick brown fox jumps over the lazy dog"  is an English-language pangrama sentence
that contains all of the letters of the alphabet. It is commonly used for touch-typing
practice, testing typewriters and computer keyboards, displaying examples of fonts, and
other applications involving text where the use of all letters in the alphabet is desired.
Owing to its brevity and coherence, it has become widely known.