findstr如何提取我想要的文本行
How does findstr extract the text line I want
我有一个 txt file.Trying 可以在 windows 中找到 grep 的替代方法来过滤特定数据。
以下是我的输入
7892:d=4 hl=3 l=5781 cons: cont [ 2 ]
52:d=4 hl=3 l=5581 cons: cont [ 0 ]
7708:d=4 hl=3 l=4478 cons: cont [ 1 ]
必须得到以下数据
52:d=4 hl=3 l=5581 cons: cont [ 0 ]
下面是我的命令
findstr ":d=4.*cont [ [=10=] ]"
这对我不起作用。请为我推荐合适的模式。
你可以试试这个。我的本地测试是成功的,findstr在命令行上似乎与网页上使用的正则表达式不同。
findstr ":d=4.*\[.*0"
我有一个 txt file.Trying 可以在 windows 中找到 grep 的替代方法来过滤特定数据。 以下是我的输入
7892:d=4 hl=3 l=5781 cons: cont [ 2 ]
52:d=4 hl=3 l=5581 cons: cont [ 0 ]
7708:d=4 hl=3 l=4478 cons: cont [ 1 ]
必须得到以下数据
52:d=4 hl=3 l=5581 cons: cont [ 0 ]
下面是我的命令
findstr ":d=4.*cont [ [=10=] ]"
这对我不起作用。请为我推荐合适的模式。
你可以试试这个。我的本地测试是成功的,findstr在命令行上似乎与网页上使用的正则表达式不同。
findstr ":d=4.*\[.*0"