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.
是否可以使用不包含例如文本 'mysql.php' 的正则表达式通过 Netbeans 函数“在项目中查找”(CTRL+SHIFT+F)查找文件?
是的,有可能。
您可以尝试正则表达式"[^(mysql.php)]",它应该可以工作。
"[^(mysql.php)]"
由于我无法在短时间内在 netbeans 中实现这一点,因此我通过控制台 (bash) 解决了这个问题:
netbeans --open $(grep -IRiL "mysql.php" .)