ACAT.Extensions.Default.FunctionalAgents.LectureManager.LectureManagerMainForm.gotoNextPara C# (CSharp) Method

gotoNextPara() private method

Starting from the specified index offset in the text, goes to the beginning of the next para
private gotoNextPara ( String text, int index ) : int
text String input text
index int where to start from
return int
        private int gotoNextPara(String text, int index)
        {
            while (index < text.Length && (isWhiteSpace(text[index])
                                           || isSentenceTerminator(text[index]) ||
                                           isParagraphTerminator(text[index])))
            {
                index++;
            }

            return index;
        }

Same methods

LectureManagerMainForm::gotoNextPara ( ) : void