12 lines
255 B
C#
12 lines
255 B
C#
|
using System.Text.RegularExpressions;
|
|||
|
|
|||
|
namespace RehauSku.Assistant
|
|||
|
{
|
|||
|
static class SkuExtension
|
|||
|
{
|
|||
|
public static bool IsRehauSku(this string line)
|
|||
|
{
|
|||
|
return Regex.IsMatch(line, @"^[1]\d{6}[1]\d{3}$");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|