Recursive search for file name pattern

Hello everyone,

I am trying to do a global recursive search to find files that match a regex pattern. Is this possible with a hippo query or API ?

Best
Kiki

Neither jcr xpath nor jcr sql allows for regex like patterns. They allow wildcards but that is about it. You may be able to use xpath functions to get closer, but there limited functions supported.

see https://docs.adobe.com/docs/en/spec/jcr/1.0/6.6.5_XPath_Extensions.html

Thank you very much …