can't search text:*.bas ansicontent:WM_SETTEXT

Found a bug in "Everything"? report it here
AutoSoft
Posts: 37
Joined: Fri Jun 09, 2023 9:56 am

can't search text:*.bas ansicontent:WM_SETTEXT

Post by AutoSoft »

*.bas ansicontent:WM_SETTEXT

now it's ok,how to find "aa bbb"
find:Const WM_COMMAND
void
Developer
Posts: 19899
Joined: Fri Oct 16, 2009 11:31 pm

Re: can't search text:*.bas ansicontent:WM_SETTEXT

Post by void »

Search Syntax



To find
aa bbb
in ansi content of .bas files, include the following in your search:

*.bas ansicontent:"aa bbb"


-The space is treated literally



To find
aa
AND
bbb
in ansi content of .bas files, include the following in your search:

*.bas ansicontent:<aa bbb>


Use < > for the function sub expression.





To find
"aa bbb"
(including the quotes) in ansi content of .bas files, include the following in your search:

*.bas ansicontent:"&quot:aa bbb&quot:"


&quot: is treated as a literal "



To find
Const WM_COMMAND
in ansi content of .bas files, include the following in your search:

*.bas ansicontent:"Const WM_COMMAND"