Powershell xml函数错误

时间:2012-05-01 17:50:47

标签: xml powershell

在函数中格式化xml时出错:

$newXml = @'
<bindings>
<basicHttpBinding>
</basicHttpBinding>
</bindings>
'@

+     $newXml =  <<<< @', is missing the terminator: '@.

1 个答案:

答案 0 :(得分:2)

here字符串有两件事。确保@'之后没有空格,'@之前没有空格。也就是说,结束终结符必须从第0列开始。