搜索“*”作为 Netbeans 查找选项中的字符串
我想在我的项目中搜索包含“*”作为文本的文件。
我正在使用 netbeans IDE。
当我这样做时,将在项目中查找选项,它会返回所有数据,而不是具体找到“*”的位置。 它将 * 视为任何单词。
有人有这样做的想法吗?
I want to search the files containing "*" as a text in my project.
I am using netbeans IDE.
When I do this going to find option in the project it returns all the data and not specfic where "*" is found.
It considers * as any word.
Does anyone have idea of doing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在文件搜索中,它将像
*
一样工作。在项目搜索中,您搜索
\*
,它会查找*
当您进行搜索时对于
*
,它假定它是一个 reg.ex 并匹配所有内容。所以你必须使用转义\
In file search it will work as it is with
*
In project search you search for
\*
and it will look for*
When you do search for
*
it assumes it as a reg.ex and matches to all.So you will have to use escape\
使用
\*
。这会转义*
并将其视为常规字符。Use
\*
. This escapes the*
and treats it as a regular character.