The Workspace project search will return a list of projects based on simple or specific search strings. Parameter Value searches are case-insensitive, whereas Parameter names are referred to in full and are case-sensitive. A space in the search string indicates a boolean AND, and quoted (literal) searches are valid.
- Enter
abc
to list projects that include a parameter value that contains the character string abc
- Enter
abc 123
to list projects that include a parameter value that contains abc
AND 123
- Enter
“abc 123”
to list projects that include a parameter value which (literally) contains abc 123
- Enter
MyParameter=123
to list projects that include the MyParameter
parameter with a value that contains 123
- Enter
“My Other Parameter”=abc
to list projects that include the My Other Parameter
parameter with a value that contains 123
. Most project parameter names include spaces, so a quoted (literal) name is needed.
- Enter
MyParameter=abc 123
to list projects that include the MyParameter
parameter with a value that contains abc
, and also have any parameter with a value containing 123
.
- Enter
MyParameter=
to list projects that include the MyParameter
parameter, regardless of its value.
► View search examples