标签: xml powershell
在函数中格式化xml时出错:
$newXml = @' <bindings> <basicHttpBinding> </basicHttpBinding> </bindings> '@ + $newXml = <<<< @', is missing the terminator: '@.
答案 0 :(得分:2)
here字符串有两件事。确保@'之后没有空格,'@之前没有空格。也就是说,结束终结符必须从第0列开始。
here
@'
'@