Versions Compared

Key

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

...

To test regex patterns we recommend a third-party site called regex101.

Show a survey only on a specific page (for example the homepage)

Code Block
example\.com(\/$|$|\?|\/\?)

...

Show a survey on all pages except

...

a specific page (for example excluding the homepage)

Code Block
example\.com(\/\w+)

...