YuriyGuts.RegexBuilder.RegexBuilder.NegativeLookAhead C# (CSharp) Method

NegativeLookAhead() public static method

Generates a zero-width negative lookahead assertion ("match(?!lookahead)").
public static NegativeLookAhead ( RegexNode lookupExpression, RegexNode matchExpression ) : RegexNodeLookAround
lookupExpression RegexNode Lookahead expression.
matchExpression RegexNode Match expression.
return RegexNodeLookAround
        public static RegexNodeLookAround NegativeLookAhead(RegexNode lookupExpression, RegexNode matchExpression)
        {
            return new RegexNodeLookAround(RegexLookAround.NegativeLookAhead, lookupExpression, matchExpression);
        }

Same methods

RegexBuilder::NegativeLookAhead ( RegexNode lookupExpression, RegexNode matchExpression, RegexQuantifier quantifier ) : RegexNodeLookAround