DataDynamics.PageFX.NUnit.CategoryExpression.EndOfText()

Here are the examples of the csharp api DataDynamics.PageFX.NUnit.CategoryExpression.EndOfText() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : CategoryExpression.cs
with MIT License
from GrapeCity

public string GetToken()
        {
            SkipWhiteSpace();

            if (EndOfText())
                _token = null;
            else if (NextIsOperator())
                _token = _text.Substring(_next++, 1);
            else
            {
                int index2 = _text.IndexOfAny(Operators, _next);
                if (index2 < 0) index2 = _text.Length;

                _token = _text.Substring(_next, index2 - _next).TrimEnd();
                _next = index2;
            }

            return _token;
        }