We need to perform an explicit match and want to do it with regex. How can this be done?
All supported Performance Management releases
If you are trying to do an exact match, you would do something like:
^words$
With ^ denoting the start and $ denoting the end. The above would only match the 3rd entry below:
So, if you wanted to only match the interfaces and not subinterfaces, you could do something like:
Interface Name matches regex: ^10ge0/1$ or ^10ge0/2$ or ^10ge0/3$