标题: [文本处理] 批处理如何删除指定文本中的特定字符,如* / ,^ 等 [打印本页]
作者: jiaolg 时间: 2016-11-10 13:00 标题: 批处理如何删除指定文本中的特定字符,如* / ,^ 等
本帖最后由 pcl_test 于 2016-11-10 13:33 编辑
{ "file": "a.txt", "hash": "da1e100dc9e7bebb810985e37875de38 *md5sums.exe" },
{ "file": "chcp.manifest", "hash": "da1e100dc9e7bebb810985e37875de38 *md5sums.exe" },
{ "file": "a/2.txt", "hash": "da1e100dc9e7bebb810985e37875de38 *md5sums.exe" },
如上是一个2.txt文件的文本内容,我希望使用bat删除最后一行的, ,并批量删除每行的中间部分的 *
作者: jiaolg 时间: 2016-11-10 13:12
原来试过:
set str=!str:\=/! 把\改成/可以
但是如果 set str=!str:*=! 这样不行。
作者: pcl_test 时间: 2016-11-10 13:21
本帖最后由 pcl_test 于 2016-11-10 14:05 编辑
回复 2# jiaolg
delims=*
http://www.bathome.net/thread-2189-1-1.html- mshta http://bathome.net/s/hta/index.html "type('文本.txt').replace(/\*|,\s*$/g,'')"
- pause
复制代码
- powershell -c "[IO.File]::ReadAllText('文本.txt', [Text.Encoding]::default) -replace '\*|,\s*$',''"
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |