ABB.Swum.SamuraiIdSplitter.IncludeIdentifier C# (CSharp) Méthode

IncludeIdentifier() private méthode

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