NotWhiteSpace() public static method

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