cloutier--bird.makeup/src/BirdsiteLive.Common/Regexes/UrlRegexes.cs

9 lines
277 B
C#
Raw Normal View History

2021-02-01 20:19:14 -05:00
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\-\@?^=%&/~\+#])?)");
}
}