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

AppendNotGeneralCategory() public method

Appends a pattern that matches a character that is not from a specified Unicode category.
public AppendNotGeneralCategory ( GeneralCategory category ) : void
category GeneralCategory An enumerated constant that identifies Unicode category.
return void
        public void AppendNotGeneralCategory(GeneralCategory category)
        {
            AppendGeneralCategory(category, true);
        }