Filter a text file into a new text file

2020-07-11 05:09发布

Sorry about the dummy question here.

Under Windows I would like to be able to filter one .txt file into a new one. Filtering all lines that contain a specific string.

I know this could well be a really easy one, but would really appreciate a few pointers please.

3条回答
狗以群分
2楼-- · 2020-07-11 05:37

Powershell has some neat string comparison features. You can pipe the output to a new file.

^^ There are some better links as to how to use Powershell - but I can't find them this minute. If you go the Powershell route there are lots of examples on the internet.

查看更多
【Aperson】
3楼-- · 2020-07-11 05:53

There's a logfile filtering utility Logfilter (www.casstor.com), that can easily do this. You can define multiple filter strings as well as use regular expressions in your filters. I think it might be what you're looking for.

查看更多
Root(大扎)
4楼-- · 2020-07-11 05:59

Use the findstr command:

findstr my-string filename > new-file

findstr /? will give you a usage message telling you how to use findstr (including the /V switch if you wanted to filter lines out rather than filtering them in.)

Or if you're familiar with grep and wishing you had it on Windows, install Cygwin. :-)

查看更多
登录 后发表回答