Pchp.Library.PerlRegex.Match.IsMatched C# (CSharp) Method

IsMatched() private method

private IsMatched ( int cap ) : bool
cap int
return bool
        internal virtual bool IsMatched(int cap)
        {
            return cap < _matchcount.Length && _matchcount[cap] > 0 && _matches[cap][_matchcount[cap] * 2 - 1] != (-3 + 1);
        }

Usage Example

Example #1
0
 /// <summary>
 /// Call out to runmatch to get around visibility issues
 /// </summary>
 protected bool IsMatched(int cap)
 {
     return(runmatch.IsMatched(cap));
 }
All Usage Examples Of Pchp.Library.PerlRegex.Match::IsMatched