blob: c7fe2bc547386e49c2422f07924a5a05020dd98f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Text.RegularExpressions;
namespace RehauSku
{
static class SkuExtensions
{
public static bool IsRehauSku(this string line)
{
return Regex.IsMatch(line, @"^[1]\d{6}[1]\d{3}$");
}
}
}
|