2021-12-13 20:39:41 +03:00
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
2022-02-04 17:13:47 +03:00
|
|
|
|
namespace RehauSku
|
2021-12-13 20:39:41 +03:00
|
|
|
|
{
|
2021-12-22 17:07:37 +03:00
|
|
|
|
static class SkuExtensions
|
2021-12-13 20:39:41 +03:00
|
|
|
|
{
|
|
|
|
|
public static bool IsRehauSku(this string line)
|
|
|
|
|
{
|
|
|
|
|
return Regex.IsMatch(line, @"^[1]\d{6}[1]\d{3}$");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|