I am trying to write a regular expression that will get the last ':' and everything after it. This is my regular expression in C#:
Regex rx5 = new Regex(@"[A-Za-z.][^\s][^:]{1,}$",RegexOptions.Singleline);
it works except it includes the ':' in there. How do I just get everything after the ':' not including the ':'?