标题: [文本处理] 求BAT批量提取多个文本中的指定格式字段,并保存到一个文本中 [打印本页]
作者: 鸟菜大 时间: 2017-8-21 18:28 标题: 求BAT批量提取多个文本中的指定格式字段,并保存到一个文本中
\/100\/100","origin":{"feed":{"duration":4913,"sn":"_LC_******************_SX","paused":"N","position":"Y","replay_status":5,"
这是文本中的一段,求提取固定格式_LC_******************_SX,并保存
多个文本!!!
求助!!!
作者: 3518228042 时间: 2017-8-21 22:38
- //&cls&(type *.txt|cscript -nologo -e:jscript "%~0") 2>nul>>"提取.txt"&pause&exit
- WSH.echo(WScript.StdIn.ReadAll().match(/_LC_[^"]+_SX/mg).join('\r\n'))
复制代码
这类问题似乎能搜索到
作者: Nsqs 时间: 2017-8-22 05:42
本帖最后由 Nsqs 于 2017-8-22 05:57 编辑
- powershell "type *.txt|foreach{if($_ -match '(?>_LC_)(.+)(?=_SX)' -eq $true){$Matches[1]}}">new.txt
复制代码
- powershell "(((type *.txt) -replace '.+_LC_(.+)_SX.+|.+','$1') -join "|") -replace '\|+',"`n"">new.txt
复制代码
作者: 鸟菜大 时间: 2017-8-22 09:28
回复 2# 3518228042
恩,类似提取的好多。太菜鸟了,弄了半天没弄出来!!
谢谢了,完美解决
作者: 鸟菜大 时间: 2017-8-22 09:31
回复 3# Nsqs
谢谢帮助,,,不过第二个只提取了开头,提取不完整,不过还是要感谢你的热心帮助
作者: qazplm 时间: 2017-8-22 13:26
- powershell "gc *.txt|select-string '_LC_[^""]+?_SX'|%%{$_.matches|%%{$_.value}}"
复制代码
作者: 鸟菜大 时间: 2017-8-25 15:31
回复 6# qazplm
谢谢
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |