标签: powershell replace
在powershell 1.0上运行时,我正在编写一个powershell脚本来替换aspx文件的文本。当它到达我的第二个<时,它给了我一个错误:
<
The '<' operator is reserved for future use.
等效的代码示例是:
ForEach-Object{$_ -replace "<title>Welcome!</title>","<title>Welcome! Warning...</title>"
如何修复它以便插入<?