Software
|
matches all bug reports that contain the word "Software" whilst capitalization plays no role.
|
Softw?re
|
matches all bug reports that contain a word like this: "Softw" + any Char + "re" - the ? is a joker for exactly one character
|
Sof*re
|
matches all bug reports that contain words beginning with "Sof" and ending with "re" - the * is a joker for any number of characters
|
Soft, Ware
|
matches all bug reports that contain the word "soft" as well as the word "ware"
|
Soft+Ware
|
matches all bug reports that either contain the word "soft" or the word "ware", as well as both of them
|
Soft-Ware
|
matches all bug reports that contain the word "Soft", but explicitely do not contain the word "Ware".
|