9 lines
277 B
C#
9 lines
277 B
C#
|
using System.Text.RegularExpressions;
|
|||
|
|
|||
|
namespace BirdsiteLive.Common.Regexes
|
|||
|
{
|
|||
|
public class UrlRegexes
|
|||
|
{
|
|||
|
public static readonly Regex Url = new Regex(@"((http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?)");
|
|||
|
}
|
|||
|
}
|