标题: [问题求助] 求助PowerShell生成UTF-8 LF编码不带BOM [打印本页]
作者: smss 时间: 2022-9-11 07:50 标题: 求助PowerShell生成UTF-8 LF编码不带BOM
- param([strinG]$file); #修改前的文件
- $file1 = [io.fileinfo]$file;
- $file2 = ".\2.txt"
- (Get-Content $file -ReadCount 0)-replace' Mobile / Max-Q','Max-Q'-replace'Mobile / ',''|Set-Content -encoding UTF8 $file2
复制代码
UTF-8 LF 不是UTF-8 CR+LF
作者: WHY 时间: 2022-9-11 12:50
- param([strinG]$file); #修改前的文件
- $file1 = [io.fileinfo]$file;
- $file2 = ".\2.txt";
- $UTF8NoBom = New-Object System.Text.UTF8Encoding $false;
- $str = [IO.File]::ReadAllText($file, [Text.Encoding]::Default);
- $str = $str -replace ' Mobile / Max-Q','Max-Q' -replace 'Mobile / ' -replace '\r\n', "`n";
- [IO.File]::WriteAllText($file2, $str, $UTF8NoBom);
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |