UnityEngine.TextEditor.FindNextSeperator C# (CSharp) Method

FindNextSeperator() private method

private FindNextSeperator ( int startPos ) : int
startPos int
return int
        private int FindNextSeperator(int startPos)
        {
            int length = this.text.Length;
            while ((startPos < length) && !isLetterLikeChar(this.text[startPos]))
            {
                startPos++;
            }
            while ((startPos < length) && isLetterLikeChar(this.text[startPos]))
            {
                startPos++;
            }
            return startPos;
        }