I’ve got notes with notetypes such as Basic and Base. Is there any reason why a search as below wouldn’t find a match?
note:re:Bas
I expect the search result to include all note types with the characters “Bas” anywhere within the name of the notetype.
Even an exact search string such as below doesn’t match anything but removing “re:” (in the second instance), it does get the matches. So does re: not work with note:?
I stand to be corrected but inside a character class [], a dot has a literal meaning. Am assuming \n to also mean linefeed. With that said, may I ask what exactly is this [.\n]* hoping to match?
My bad. I should have used (.|\n)* instead. Basically, * matches ”<zero or more characters>” and _ matches “<one character>” in the words of the manual.