not



Description

Performs a logical “not” on a value.

Syntax

not <value>

not <value>

  • Performs a logical “not” on a value.

Examples

when HTTP_REQUEST {
  if { not ([HTTP::uri] starts_with "/abc") } {
     pool pool1
  } else {
     pool pool2
 }
}