Example #1
0
 protected bool Equals(UnicodeData other)
 {
     return(Code == other.Code);
 }
Example #2
0
 /// <summary>
 /// Matches anything that does not belong to the specified unicode category.
 /// </summary>
 /// <param name="unicodeInfo">The unicode catagory not to be matched.</param>
 /// <returns>\P{<value>category</value>}</returns>
 public RegExBuilderQuantifiers NonUnicodeCategoryOrBlockOrScript(UnicodeData unicodeInfo) => AddToStreamReturnQuantifiers($@"\P{unicodeInfo.Code}");