My current regex
^Service\.LT\.fix\.log$
matches the below string
Service.LT.fix.log
How would I change regex so any word before and after LT should pass.
The regex should pass all the below cases:
Service.LT.fix.log
Service.BeforeLT.fix.log
Service.LTAfter.fix.log
I tried
^Service\..+?LT.+?\.fix\.log$
but that did not work.