cloutier--bird.makeup/src/BirdsiteLive.Common/Regexes/UrlRegexes.cs
2021-02-10 00:19:12 -05:00

9 lines
No EOL
283 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\-\@?^=%&/~\+#])?)");
}
}