If you are experiencing problems with "Everything", post here for assistance.
PeterPanino
Posts: 78 Joined: Sun Feb 21, 2016 10:26 pm
Post
by PeterPanino » Sun Feb 28, 2016 11:31 am
Hello!
I am trying to create a content regex which can find files containing ANY of these two lines:
Both of these expressions do work on their own:
However, this expression does not work:
Code: Select all
content:"procedure|function.+LoadFrom"
Why not? Which expression can find any of the above lines?
therube
Posts: 4955 Joined: Thu Sep 03, 2009 6:48 pm
Post
by therube » Sun Feb 28, 2016 12:33 pm
I suspected "regex:" needed to be in there somewhere, & "Running" through the Advanced Search GUI, with Name "ncmain.exe" & your regex: gave:
> ncmain.exeregex:"procedure|function.+LoadFrom"
(which does look odd to me, no space ?) so maybe you need to finagle regex: into your content: search, like (& I don't know if its right, but):
> content:regex:"procedure|function.+LoadFrom"
PeterPanino
Posts: 78 Joined: Sun Feb 21, 2016 10:26 pm
Post
by PeterPanino » Sun Feb 28, 2016 6:08 pm
therube wrote: I suspected "regex:" needed to be in there somewhere, & "Running" through the Advanced Search GUI, with Name "ncmain.exe" & your regex: gave:
> ncmain.exeregex:"procedure|function.+LoadFrom"
(which does look odd to me, no space ?) so maybe you need to finagle regex: into your content: search, like (& I don't know if its right, but):
> content:regex:"procedure|function.+LoadFrom"
Thanks, but unfortunately this does not work.