↧
Answer by derekantrican for PowerShell string interpolation syntax
Note that $() is helpful for json objects:"My json property is $($jsonObj.property)"
View ArticleAnswer by mklement0 for PowerShell string interpolation syntax
tl;drInside "...":$(...) is only needed to embed entire expressions or commands (e.g. "$($PSVersionTable.PSVersion)")${...} is only needed if a stand-alone reference to a variable that has a regular...
View ArticleAnswer by marsze for PowerShell string interpolation syntax
${variable} is the syntax for variable names that include special characters.(See about_Variables -> Variable names that include special characters)Example:${var with spaces} = "value""var with...
View ArticlePowerShell string interpolation syntax
I always used the following syntax to be sure that variable were expanded in a string:"my string with a $($variable)"I recently ran into the following syntax:"my string with a ${variable}"Are they...
View Article