Wildcard without matching sub-subdomain not supported? #2918
Unanswered
fallingcats
asked this question in
Q&A
Replies: 1 comment
-
You're right. No full RegEx. The matching syntax:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The wildcard syntax doesn't seem to let me match for
*.example.org
without also matching*.*.example.org
.I've tried:
[a-z]*.example.com
-> also matches*.*example.com
[a-z]+.example.com
, doesn't work([a-z]*).example.com
, doesn't workIs there something that I'm missing here or is this simply not supported?
The issue I'm running into is that I want to use the wildcard for my search domain. Which would be fine, if my webbrowser didn't resolve google.com to google.com.example.com in case the first one times out.
Beta Was this translation helpful? Give feedback.
All reactions