Search for documents by typing in words
java computer software
Search for exact phrases by using quotations
"java software"
Use +, -, AND, OR, NOT operators when searching
+java -coffee
Java NOT Coffee
"jakarta apache" AND "jakarta tomcat"
"jakarta apache" OR jakarta
To perform a single character wildcard search use the "?" symbol.
ja?a
To perform a multiple character wildcard search use the "*" symbol.
j*a
ja*
Note: You cannot use a * or ? symbol as the first character of a search.
To find the term java in the title only
title:java