Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • * : Multiple character wildcard searches
  • ? : Single character wildcard search
  • " : Used for partial or exact search
  • NOT : Capiatl Capital letter NOT excluded excludes the following wordterm

Search for Wildcard Text Searches 

...

  • Server alpha test
  • Alpha server test
  • App tester betaab-x1

When we search:

Search keywordResult
te*

All assets match

add an asterisk at the end
test*

All assets match


teNothing
test
  • Alpha sever test
  • Server alpha test

server test
  • Alpha sever test
  • Server alpha test

"server test"
  • Alpha sever test
Query between double quotes
tester
  • App tester beta

teste*
  • App tester beta

tes?
  • Alpha sever test
  • Server alpha test
Only one character matches for question mark, so "tester" does not return.
  • if you have an asset with name ab-

...

  • x1 you can search for ab-

...

Antoher example

We have following assets and their names are

  • New York one
  • New York two
  • New York two three

  • New York Not Here

When we search:

Search keywordResult
New york

All assets match


"New york one"
  • New York one
Exact search
"new york" NOT two
  • New York one
  • New York Not Here
Must include "new york" but not two
"new york" NOT t*
  • New York one
  • New York Not Here
Must include "new york" but not a have word start with t

Please refer to Lucene's official document for wildcard searches

...

When you surround text search terms with double quotes (i.ie "pandas and monkeys"), only exact matching results will be displayed.

Search keywordMatching attribute value
"pandas and monkeys"

pandas and monkeys

pandas and MONKEYS

Exactly must be the same. But not case sensitive 
pandas and monkeys

pandas

monkeys

pandas monkeys

monkeys pandas

any tokenized word will match


Partial term search

Add a plus (+) sign before the terms with double quotes: +"new york"

...