might be best explained with an example. Thanks for the assistance.
EDIT: Accordingt to this page https://sling.apache.org/apidocs/sling11/org/apache/sling/servlets/annotations/SlingServletFilter.ht...), pattern accepts regex value.
This one works.
(service = Filter.class, property = {
"sling.filter.scope=REQUEST",
"sling.filter.pattern=^/content/myapp/sg/en/login.*",
"service.ranking:Integer=100"
})
This one does not work.
(service = Filter.class, property = {
"sling.filter.scope=REQUEST",
"sling.filter.pattern=^/content/myapp/sg/en/(login|members).*",
"service.ranking:Integer=100"
})