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

LastGroupToStringImpl() private method

private LastGroupToStringImpl ( ) : string
return string
        internal string LastGroupToStringImpl()
        {
            return GroupToStringImpl(_matchcount.Length - 1);
        }

Usage Example

        /// <summary>
        /// Given a Match, emits into the StringBuilder the evaluated
        /// substitution pattern.
        /// </summary>
        private void ReplacementImpl(StringBuilder sb, Match match)
        {
            for (int i = 0; i < _rules.Count; i++)
            {
                int r = _rules[i];
                if (r >= 0)   // string lookup
                {
                    sb.Append(_strings[r]);
                }
                else if (r < -Specials) // group lookup
                {
                    sb.Append(match.GroupToStringImpl(-Specials - 1 - r));
                }
                else
                {
                    switch (-Specials - 1 - r)
                    { // special insertion patterns
                    case LeftPortion:
                        sb.Append(match.GetLeftSubstring());
                        break;

                    case RightPortion:
                        sb.Append(match.GetRightSubstring());
                        break;

                    case LastGroup:
                        sb.Append(match.LastGroupToStringImpl());
                        break;

                    case WholeString:
                        sb.Append(match.GetOriginalString());
                        break;
                    }
                }
            }
        }
All Usage Examples Of Pchp.Library.PerlRegex.Match::LastGroupToStringImpl