2021-02-01 20:19:14 -05:00
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace BirdsiteLive.Common.Regexes
|
|
|
|
|
{
|
|
|
|
|
public class UrlRegexes
|
|
|
|
|
{
|
2021-02-10 00:19:12 -05:00
|
|
|
|
public static readonly Regex Url = new Regex(@"(.?)(((http|ftp|https):\/\/)[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?)");
|
2021-02-01 20:19:14 -05:00
|
|
|
|
}
|
|
|
|
|
}
|