Hello,
I am in a situation where I need to filter out a certain string. It is a little complicated however. The string(s) I am trying to filter out usually looks like this:
"port D10-High collision or drop rate."
D10 is a device bay in a chassis and that is what we are really interested in here. There are 16 device bays so it can be D1, D2, D3....D16.
The only problem is that there is no space between D10 and "-High"
And we WOULD like to keep getting messaged that dont have the Dx part in it so we cant just filter out "collision or drop rate."
Is the only way to do this by putting 16 separate filters like so: ...?
"D1-High"
"D2-High"
"D3-High"
...."D16-High"
or is there a wildcard we can put in place of the number? Catch is that sometimes it could be a single digit (1-9) or it could be a double digit (10-16).
You input is appreciated. Thank you.