我需要能够在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对待也是一个变量....
答案 0 :(得分:3)
在您想要的美元符号上使用反引号(`),并保留变量美元符号:
foreach($model->attributes as $attribute => $value) {
// do your stuff here
}