You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
422 B

using Swift.web.Library;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace Swift.API.Common.Helper
{
public static class Extensions
{
public static bool IsValidEmail(this string email)
{
return Regex.IsMatch(email ?? "", GetStatic.ReadWebConfig("regex"), RegexOptions.IgnoreCase);
}
}
}