Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder.AppendEndOfInputOrBeforeEndingLinefeed C# (CSharp) Method

AppendEndOfInputOrBeforeEndingLinefeed() public method

Appends a pattern that is matched at the end of the string or before linefeed at the end of the string.
public AppendEndOfInputOrBeforeEndingLinefeed ( ) : void
return void
        public void AppendEndOfInputOrBeforeEndingLinefeed()
        {
            AppendBackslash('Z');

            if (_fBuilder)
                _builder.AddInfo(SyntaxKind.EndOfInputOrBeforeEndingLinefeed);
        }