Page rgx for dynamic UUID's #1139
Unanswered
RobinBertilsson
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have a page in my project that has an URL that looks like the following:
/companies/43a2a2da-bece-4e94-8cf7-d0886749627e/balance
. In order to match this I've tried thergx:
method, without success - sadly.What would be the proper way to match it, I've tried the following
rgx:/\/companies\/\S+\/balance/g
(Proper regex)rgx:/companies/\S+/balance/g
(without escapes)rgx:/companies/\S+/balance
(without modifier)rgx:^/companies/*/balance
(according to docs)Why don't any of these work? If I remove
/balance
in this onergx:^/companies/*/balance
it works just fine, but that's not what I want.Thanks,
R
Beta Was this translation helpful? Give feedback.
All reactions