I’m hoping someone can explain regular expression matching. Whenever I try to use it, the login doesn’t show up.
For example, I created the test below to match images.google.com but the login doesn’t show up when I visit images.google.com.
I’m hoping someone can explain regular expression matching. Whenever I try to use it, the login doesn’t show up.
For example, I created the test below to match images.google.com but the login doesn’t show up when I visit images.google.com.
Your *
allows any repetition of the last /
e.g. https://////google.com
Try .*
for repetition of any character(s) succeeded by google.com
or perhaps google.com$
if the https
is not essential for you.
@wwwKris Here is also an overview in the Help Sites: Using URIs | Bitwarden Help Center
Thanks @Mulled7768 and @Nail1684.
The .* solved it. I read the help page but didn’t pick up on the fact that I had to use .* … I thought * would match any series of characters.
Thanks very much for the replies.
This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.