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

AppendCharGroup() public method

Appends a pattern that matches a specified character.
public AppendCharGroup ( AsciiChar value ) : void
value AsciiChar An enumerated constant that identifies ASCII character.
return void
        public void AppendCharGroup(AsciiChar value)
        {
            AppendCharGroup(value, false);
        }

Same methods

PatternBuilder::AppendCharGroup ( AsciiChar value, bool negative ) : void
PatternBuilder::AppendCharGroup ( CharClass value ) : void
PatternBuilder::AppendCharGroup ( CharGrouping value ) : void
PatternBuilder::AppendCharGroup ( CharGrouping value, bool negative ) : void
PatternBuilder::AppendCharGroup ( GeneralCategory category ) : void
PatternBuilder::AppendCharGroup ( GeneralCategory category, bool negative ) : void
PatternBuilder::AppendCharGroup ( NamedBlock block ) : void
PatternBuilder::AppendCharGroup ( NamedBlock block, bool negative ) : void
PatternBuilder::AppendCharGroup ( char characters, bool negative ) : void
PatternBuilder::AppendCharGroup ( char first, char last ) : void
PatternBuilder::AppendCharGroup ( char first, char last, bool negative ) : void
PatternBuilder::AppendCharGroup ( string characters ) : void
PatternBuilder::AppendCharGroup ( string characters, bool negative ) : void

Usage Example

Example #1
0
 internal override void AppendTo(PatternBuilder builder)
 {
     builder.AppendCharGroup(_value, Negative);
 }
All Usage Examples Of Pihrtsoft.Text.RegularExpressions.Linq.PatternBuilder::AppendCharGroup