在powershell中格式化URL以包含$符号

时间:2017-07-27 05:28:43

标签: powershell

我需要能够在powershell中将变量存储在变量中,但问题在于正确的格式化。

例如,我需要格式化此网址

https://graph.windows.net/mytenantname/users?$top=999?api-version=1.6

但我需要用变量

替换mytenantname
"https://graph.windows.net/$mytenantname/users?$top=999?api-verion=1.6"

但这样做我无法保持$top作为PowerShell对待也是一个变量....

1 个答案:

答案 0 :(得分:3)

在您想要的美元符号上使用反引号(`),并保留变量美元符号:

foreach($model->attributes as $attribute => $value) {
   // do your stuff here
}