Is there any way of matching a regex from right to left? What Im looking for is a regex that gets
MODULE WAS INSERTED EVENT LOST SIGNAL ON E1/T
In .NET you could use the RightToLeft option :
RightToLeft
Regex RE = new Regex(Pattern, RegexOptions.RightToLeft); Match theMatch = RE.Match(Source);