Per default, the search will only look for exact matches. You can however also do boolean searches and use
wildcard characters. Examples are:
abc AND def: returns results containing both "abc" and "def"
abc OR def: returns results containing "abc" or "def"
ab*: return results starting with "ab". So to do partial matches, you can use the wildcard character *
That wildcard character can be used everywhere except as the first character of your search term