标题: [文本处理] [已解决]批处理怎样给文本的每一行加双引号(英文),谢谢 [打印本页]
作者: yyz219 时间: 2022-2-23 14:22 标题: [已解决]批处理怎样给文本的每一行加双引号(英文),谢谢
本帖最后由 yyz219 于 2022-2-23 23:24 编辑
给文本的每一行加双引号(英文),谢谢
作者: yakeyun 时间: 2022-2-23 15:21
回复 1# yyz219 - @echo off
- (for /f "tokens=* delims=, " %%a in ('type "test.txt"') do (
- echo "%%a"
- )
- ) >test.txt
-
- exit
复制代码
作者: Batcher 时间: 2022-2-23 15:28
回复 1# yyz219
请参考Q-04和Q-05把bat文件和txt文件都保存为ANSI编码:
https://mp.weixin.qq.com/s/6lbb97qUOs1sTyKJfN0ZEQ- @echo off
- (for /f "delims=" %%i in ('type "1.txt"') do (
- echo,"%%i"
- ))>"2.txt"
复制代码
作者: 5i365 时间: 2022-2-23 19:58
本帖最后由 5i365 于 2022-2-23 20:02 编辑
回复 1# yyz219 - #@&cls&powershell "gc '%~0'|iex"&pause&exit
- $f = "$HOME\Desktop\test.txt"
- gc $f | foreach{ '"' + $_ + '"' } | Out-File $f
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |