第一篇 C++学习之路

第一篇 C++学习之路,第1张

示例

使用空格分隔多个搜索字符串,除非参数以 /c 为前缀。要在文件 x.y 中搜索“hello”或“there”,请键入:

findstr "hello there" x.y

要在文件 x.y 中搜索“hello there”,请键入:

findstr /c:"hello there" x.y

若要查找文件 Proposal.txt 中出现的所有单词“Windows”(首字母 W 大写),请键入:

findstr Windows proposal.txt

若要搜索包含单词 Windows 的当前目录和所有子目录中的每个文件(不考虑字母大小写),请键入:

findstr /s /i Windows *.*

要查找包含字“FOR”的所有行(前面可有任意空格,如:计算机程序中的循环),并包括每次出现的行号,请键入:

findstr /b /n /c:"*FOR" *.bas

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1325116.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-12
下一篇 2022-06-12

发表评论

登录后才能评论

评论列表(0条)

保存