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

9 lines
283 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
{
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
}
}