本帖最后由 zlsanhong 于 2019-10-18 17:58 编辑
回复 4# xczxczxcz
首先感谢兄弟,但是我在用windows powershell 执行这两段代码时,都显示了如下内容,请问下我是哪里做错了吗?(我是技术盲,所以虚心求教呢!)- PS C:\Users\Administrator\Desktop\模版\1> cd D:\1
- PS D:\1> $arr=@{};gc a.txt|%{[void]$arr.Add((++$n),$_)};[regex]::Replace(((gc renshou.html -enc UTF8) -join "`r`n"),'(?<
- =(>|=))\d{5}',{$arr.[int]$args.value})|sc '.\index.html' -enc UTF8 -Force;
- Get-Content : 找不到路径“D:\1\renshou.html”,因为该路径不存在。
- 所在位置 行:1 字符: 69
- + $arr=@{};gc a.txt|%{[void]$arr.Add((++$n),$_)};[regex]::Replace(((gc <<<< renshou.html -enc UTF8) -join "`r`n"),'(?<
- =(>|=))\d{5}',{$arr.[int]$args.value})|sc '.\index.html' -enc UTF8 -Force;
- + CategoryInfo : ObjectNotFound: (D:\1\renshou.html:String) [Get-Content], ItemNotFoundException
- + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand
-
- PS D:\1> $arr=@{};gc a.txt|%{[void]$arr.Add((++$n),$_)};[regex]::Replace((gc renshou.html -ReadCount 0 -enc UTF8),'(?i)(
- ?<=(>|=))\d{5}',{$arr.[int]$args.value})|sc '.\index.html' -enc UTF8 -Force;
- Get-Content : 找不到路径“D:\1\renshou.html”,因为该路径不存在。
- 所在位置 行:1 字符: 68
- + $arr=@{};gc a.txt|%{[void]$arr.Add((++$n),$_)};[regex]::Replace((gc <<<< renshou.html -ReadCount 0 -enc UTF8),'(?i)(
- ?<=(>|=))\d{5}',{$arr.[int]$args.value})|sc '.\index.html' -enc UTF8 -Force;
- + CategoryInfo : ObjectNotFound: (D:\1\renshou.html:String) [Get-Content], ItemNotFoundException
- + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetContentCommand
复制代码
|