NotDigit() public static method

Returns a pattern that matches a character that is not from the digit character class.
public static NotDigit ( ) : CharGrouping
return CharGrouping
コード例 #1
0
 /// <summary>
 /// Appends a pattern that matches a character that is not from the digit character class.
 /// </summary>
 /// <returns></returns>
 public CharGrouping NotDigit() => Append(Chars.NotDigit());