My LogiX is Undeniable.
using System.Text.RegularExpressions; //this will turn all urls in the input parameter string sInput into HTML hyperlinkspublic string ConvertURLsToHyperlinks(string sInput) { return Regex.Replace(sInput, @"(\bhttp://[^ ]+\b)", @"$0"); }