grep/regex 搜索 X 但不搜索 Y?
BBEdit有一个优秀的“多文件搜索”功能,可以用Grep进行搜索。我有一些 PHP 代码需要清理。例如,我想找到...的所有实例
FROM table
,但不是...
FROM `table`
换句话说,我想找到“FROM xyz”,其中xyz的第一个字符不是克拉符号。
这可行吗?
BBEdit has an excellent "multi-file search" feature that can search with Grep. I have some PHP code in need of cleaning up. For example, I'd like to find all instances of ...
FROM table
... but not ...
FROM `table`
In other words, I want find "FROM xyz" where the first character of xyz is NOT the carat symbol.
Is this doable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个正则表达式:
Try this regex: