Variable expansion in strings and here-strings

PSMDTAG:FAQ: What is the difference between single quoted and double quoted strings?  ANSWER:  Double quoted string expand variables and single quoted strings do not.
Example:
PS> $x=”TEST”PS> “This is a $x”This is a TESTPS> ‘This is a $x’This is a $x
  … Continue reading Variable expansion in strings and here-strings