Versions Compared

Key

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

...

Add a condition with the following characteristics:

Value

Pattern

Exact

Literal

Negative

Notes

%variable%

\S+

(tick)Use

either

(error)

(tick)

  • \S+ means to look for at least 1 (that is what + means) non-whitespace character

  • Use

Exact to make sure there is no match on a value containing a blank with other characters
  • Negative to reverse the matching on a non-blank character

 

...