Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用 CTRL-SHIFT-F 搜索所有文件。但我想专门搜索具有以下条件的行:
所以点击可能包括
ETC...
有没有办法使用这样的通配符进行搜索: created*4pm ?
更新
我看到您可以在 Netbeans 中使用正则表达式。现在棘手的部分是如何在 netbeans 中使用 REGEX 来搜索可以找到上述内容的字符串?
不会以下工作:
created.*4pm
我会使用命令行。cd到 src 文件夹并执行递归grep.
cd
grep
grep -R "MY_REGEX" *
根据您的正则表达式使用适当的开关,看看输出:
grep --help | grep regex