There is a small syntax error in your approach.
The "Serial*Write" search operator is looking for a word that begins with serial then ends with write, and hence will correctly not yield a hit.
To correct this search instead for "Serial*Write*"
Note the additional wild card at the end.
Hope that helps.
Matt Taylor
Sent from my iPhoneI have a .cpp file that is indexed and has the word
"SerialNumberWriteLevel". I could not find it with "Serial*Write" , but
eventually found it with "Serial*Level".
Why did "Serial*Write" not find it?
(Noise does not contain serial, number, write, or level).