cs11dotnet7/vscode/Chapter06/PacktLibrary/StringExtensions.cs
2022-02-27 19:08:52 +00:00

16 lines
357 B
C#

using System.Text.RegularExpressions; // to get Regex
namespace Packt.Shared;
public static class StringExtensions
{
public static bool IsValidEmail(this string input)
{
// use a simple regular expression to check
// that the input string is a valid email
return Regex.IsMatch(input,
@"[a-zA-Z0-9\.-_]+@[a-zA-Z0-9\.-_]+");
}
}