Regex search how to find word "gas" and exclude all words "gasification"

Hello! Regex search question, i need to find exact word using “search in all files”.
Word that i need to find is “gas” and i want to exclude all results with “gasification”.
What query i need to use? :face_with_monocle:

I have already tried query : gas -ification
No results :confused:

@andypassion Try this

/gas\b/

because it’s not regex.
And you tried to find all notes with gas* but without “ification” word.

Your query should be:
gas -gasification

Or you can try:
“gas”

2021_05_08 18-01-37 2021_05_08 18-01-48
2021_05_08 18-03-35

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.