ABB.Swum.SamuraiIdSplitter.IncludeIdentifier C# (CSharp) Method

IncludeIdentifier() private method

private IncludeIdentifier ( string word, int count ) : bool
word string
count int
return bool
        private bool IncludeIdentifier(string word, int count)
        {
            return (word.Length > 1) && (count > 2) && !Regex.IsMatch(word, @"^\d+$");
        }