|
From: Mauricio S. <mau...@li...> - 2025-09-21 23:24:51
|
Hi there. I've been trying to get SearchCertificate operation to work with a wildcard search: "TEXT%" works, but "%TEXT" or "%TEXT%" doesn't . Looking at workflow/def/certificate_search.yaml, there's the regex: "\\A [a-zA-Z0-9-\\.\\:]+" . All forms: "TEXT%", "%TEXT" AND "%TEXT%" works with this regex: "\\A (%)?[a-zA-Z0-9-\\.\\:]+" Just wondering if maybe "\\A (%)?[a-zA-Z0-9-\\.\\:]+" would be a valid regex for the project. If not, why not? Thanks! |