Collections:
Other Resources:
Variable Expansion in Strings in Windows PowerShell
What is variable expansion in strings in Windows PowerShell?
✍: FYIcenter.com
Variable expansion in strings is a short-hand of string concatenation operations
using the following syntax rule:
When a variable is included in a double-quoted string literal like "... $variable ...", it will be replaced with the string representation of the variable value.
In other words, the following two expressions are identical:
"Leading text $var trailing text." "Leading text "+$var+" trailing text."
Remember, if you want to keep $var as 3 characters instead of a variable, you need to use the $ sign escape sequence. Here is a good example of using variable expansion in a string:
PS C:\fyicenter> $name = "John" PS C:\fyicenter> Write-Host "Value of `$name: $name" Value of $name: John
⇒ Expression Expansion in Strings in Windows PowerShell
⇐ String Concatenation in Windows PowerShell
2016-10-20, ∼3171🔥, 0💬
Popular Posts:
How to uninstall ActivePerl 5.8.8.820? If for some reason you want to uninstall ActivePerl from your...
What is HelpSvc.exe - Microsoft Help Center Service? That is HelpSvc.exe? There many answers on the ...
Why don't my playlists work on my new computer? An entry in a playlist uses a "relative path" to ide...
What is the "Credential Manager (VaultSvc)" system service on Windows Server 2012? Can I disable "Cr...
What is PHP? PHP is a widely-used general-purpose scripting language that is especially suited for W...