Hello..
I am tring to use an alarm filter with a regex as follows:-
So show all alarms with element names ending with the string 'SNP-E'
I use the follwing regex :-
-\D{SNP-E}\z
So the match must occur at the end of the string which should yeild the desired resuls.. but it does not. Any ideas???
Marieke Goethals [SLC] [DevOps Enabler] Selected answer as best 11th July 2023
Thank you.. Thanks yes.. its .net conformant
Hi Ken,
Could you please try with the pattern .*SNP-E$
Marieke Goethals [SLC] [DevOps Enabler] Selected answer as best 11th July 2023
Hi Yes.. that works also.. Thank you
Hi Ken. I see Gelber already gave a working alternative. Just so you know why your expression didn’t work: you need to remove the curly braces and the dash in front.
You can always try out regular expressions here: https://regex101.com.
Make sure to select the .NET (C#) flavor if you want to use it in DataMiner Cube.