Search for two words near each other
Re: Search within file contents?
Is there any way to use a wild card or search for two words near each other in the contents?
Re: Search for two words near each other
wildcards:content:*word1*word2*
wildcards: = enable content wildcards.
regex:content:\bword1\b.{1,1000}\bword2\b
regex: = enable regular expressions.
\b = word boundary.
. = match any character
{1,1000} = match the previous element 1 to 1000 times -adjust for how close you want the words together.