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

PositiveLookAhead() public static method

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

Same methods

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