Regex r = new Regex(regex, RegexOptions.IgnoreCase);
string f = r.Replace(msg1,"<a href=\"$1\" title=\"Click to open in a new window or tab\" target=\"_blank\">$1</a>").Replace("href=\"www","href=\"http://www").Replace(@"\r\n","<br />").Replace(@"\n","<br />").Replace(@"\r","<br />");
Console.WriteLine(f);
string g = r.Replace(msg2,"<a href=\"$1\" title=\"Click to open in a new window or tab\" target=\"_blank\">$1</a>").Replace("href=\"www","href=\"http://www").Replace(@"\r\n","<br />").Replace(@"\n","<br />").Replace(@"\r","<br />");
<a href="http://w...content-available-to-author-only...t.com" title="Click to open in a new window or tab" target="_blank">www.test.com</a>
<a href="http://w...content-available-to-author-only...t.com" title="Click to open in a new window or tab" target="_blank">www.test.com</a>