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, ∼3305🔥, 0💬
Popular Posts:
What is "Telephony" in my Windows XP service list? And how is "Telephony" service related to TapiSrv...
What is "Secondary Logon" in my Windows XP service list? And how is "Secondary Logon" service relate...
Where to find tutorials on using Windows Vista computers? I want to learn how to use Windows Vista m...
What is the "SCNotification.exe" process on windows 7? Is the "SCNotification.exe" process a virus? ...
What is the scheduled task "\G2MUploadTask-S-1-5-21 -..."on my Windows 7 computer? "\G2MUploadTask-S...