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+$");
        }