Versions Compared

Key

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

...

Code Block
themeConfluence
languagejavascript
select when pageview where url.extract(re#/archives/(\d{4})/#).head() > 2003

The extract operator () operator in this expression returns an array of matches in the regex. The head() operator returns the first element in the array for use in the inequality test.

...