Board logo

标题: [问题求助] 求助PowerShell生成UTF-8 LF编码不带BOM [打印本页]

作者: smss    时间: 2022-9-11 07:50     标题: 求助PowerShell生成UTF-8 LF编码不带BOM

  1. param([strinG]$file); #修改前的文件
  2. $file1 = [io.fileinfo]$file;
  3. $file2 = ".\2.txt"
  4. (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

  1. param([strinG]$file);                #修改前的文件
  2. $file1 = [io.fileinfo]$file;
  3. $file2 = ".\2.txt";
  4. $UTF8NoBom = New-Object System.Text.UTF8Encoding $false;
  5. $str = [IO.File]::ReadAllText($file, [Text.Encoding]::Default);
  6. $str = $str -replace ' Mobile / Max-Q','Max-Q' -replace 'Mobile / ' -replace '\r\n', "`n";
  7. [IO.File]::WriteAllText($file2, $str, $UTF8NoBom);
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2