cmd:
cat .\input.txt 中文不乱码
cat .\input.txt | findstr "__" 中文乱码
PS:
Get-Content .\input.txt | Select-String "__" | Out-File output.txt -Encoding UTF8 中文不乱码
win 命令 过滤数据 处理中文乱码
最新推荐文章于 2024-10-06 09:14:33 发布
本文比较了在Windows命令行(cmd)和PowerShell中处理包含中文文本的文件时,使用`cat`,`findstr`,和`Get-Content`等工具的不同方法,以及如何确保中文字符正确显示和保存为UTF-8编码。
摘要由CSDN通过智能技术生成