StringCreation Enumeration
Represents a strategy for generating random strings.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public enum StringCreation
Public Enumeration StringCreation
public enum class StringCreation
| AnyChars | 0 |
Represents random characters including invalid ones (unpaired surrogates and non-character UTF-16 code points).
|
| AnyValidChars | 1 |
Represents random characters ensuring that the string will not contain invalid Unicode characters.
|
| Ascii | 2 |
Represents random ASCII non-control characters.
|
| Digits | 3 |
Represents random digit characters.
|
| DigitsNoLeadingZeros | 4 |
Represents random digit characters ensuring that the first character is not zero.
|
| Letters | 5 |
Represents random English letters.
|
| LettersAndDigits | 6 |
Represents random English letters and digit characters.
|
| UpperCaseLetters | 7 |
Represents random English uppercase letters.
|
| LowerCaseLetters | 8 |
Represents random English lowercase letters.
|
| TitleCaseLetters | 9 |
Represents random English title case letters.
|
| UpperCaseWord | 10 |
Represents random word-like English characters in uppercase.
|
| LowerCaseWord | 11 |
Represents random word-like English characters in lowercase.
|
| TitleCaseWord | 12 |
Represents random word-like English characters in title case.
|
| Sentence | 13 |
Represents random word-like sequences with uppercase first letter and sentence end mark.
|