AlphanumericUnderscore() public static method

Returns a pattern that matches a latin alphabet letter, an arabic digit or an underscore.
public static AlphanumericUnderscore ( ) : CharGrouping
return CharGrouping
コード例 #1
0
 /// <summary>
 /// Appends a pattern that matches a latin alphabet letter, an arabic digit or an underscore.
 /// </summary>
 /// <returns></returns>
 public CharGrouping AlphanumericUnderscore() => Append(Chars.AlphanumericUnderscore());