SILUBS.ScriptureChecks.AWord.AWord C# (CSharp) Method

AWord() public method

public AWord ( string text, CharacterCategorizer categorizer ) : System
text string
categorizer SILUBS.SharedScrUtils.CharacterCategorizer
return System
		public AWord(string text, CharacterCategorizer categorizer)
		{
			this.m_text = text;
			this.m_categorizer = categorizer;

			string word = CountLettersAndReturnWordWithOnlyWordFormingCharacters(text);
			if (m_lowerCaseLetters == 0 || m_upperCaseLetters == 0)
				return;
			FindPrefixAndSuffixIfAny(word);
		}