Here are a few examples:
"My search string" | Multiword search strings must be quoted |
"Port map*" | '*' matches zero or more characters |
"set?" | '?' matches any single character |
"pmap | ipmap" | '|' logical OR |
"[pP]map" | Matches pmap or Pmap |
For more details, see this Tutorial.