[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[转载代码] [PowerShell每日技巧]字符串中的变量扩展(20140226)

To insert a variable into a string, you probably know that you can use double quotes like this:
  1. $domain = $env:USERDOMAIN
  2. $username = $env:USERNAME
  3. "$domain\$username"
复制代码
This works well as long as it is clear to PowerShell where your variables start and end. Check this out:
  1. $domain = $env:USERDOMAIN
  2. $username = $env:USERNAME
  3. "$username: located in domain $domain"
复制代码
This fails, because PowerShell adds the colon to the variable (as indicated by the token colors).

You can use the PowerShell backtick escape character to escape special characters like the colon:
  1. $domain = $env:USERDOMAIN
  2. $username = $env:USERNAME
复制代码
  1. "$username`: located in domain $domain"
复制代码
This will not help you, though, if the problem was not caused by a special character in the first place:
  1. "Current Background Color: $host.UI.RawUI.BackgroundColor"
复制代码
Token colors indicate that double quoted strings only resolve the variable and nothing else (nothing that follows the variable name, like accessing object properties).

To solve this problem, you must use one of these techniques:
  1. "Current Background Color: $($host.UI.RawUI.BackgroundColor)"
复制代码
  1. 'Current Background Color: ' + $host.UI.RawUI.BackgroundColor
复制代码
  1. 'Current Background Color: {0}' -f $host.UI.RawUI.BackgroundColor
复制代码
http://powershell.com/cs/blogs/tips/archive/2014/02/26/expanding-variables-in-strings.aspx

除了用反引号对冒号进行转义,还可以用 ${}
  1. $domain = $env:USERDOMAIN
  2. $username = $env:USERNAME
  3. "${username}: located in domain ${domain}"
复制代码

TOP

返回列表