ABB.Swum.SamuraiIdSplitter.IncludeIdentifier C# (CSharp) Метод

IncludeIdentifier() приватный Метод

private IncludeIdentifier ( string word, int count ) : bool
word string
count int
Результат bool
        private bool IncludeIdentifier(string word, int count)
        {
            return (word.Length > 1) && (count > 2) && !Regex.IsMatch(word, @"^\d+$");
        }