string_values library
Dart Essentials - a collection of classes and functions to make Dart development easier.
Mostly inspired by python
Constants
- allWhitespace → const String
- a string containing all Unicode characters that are considered whitespace.
- asciiLetters → const String
- The concatenation of the asciiLowercase and asciiUppercase constants. This value is not locale-dependent.
- asciiLowercase → const String
- The lowercase letters 'abcdefghijklmnopqrstuvwxyz'. This value is not locale-dependent and will not change.
- asciiUppercase → const String
- The uppercase letters 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'. This value is not locale-dependent and will not change.
- base62chars → const String
- chars used by base64 encoding
- base64chars → const String
- chars used by base64 encoding
- digits → const String
- The string '0123456789'.
- emptyString → const String
- Empty string: ''
- hexdigits → const String
- The string '0123456789abcdefABCDEF'.
- invisibleWhitespace → const String
- all Unicode space characters with White_Space=no
- octdigits → const String
- The string '01234567'.
- printable → const String
- String of ASCII characters which are considered printable. This is a combination of digits, ascii_letters, punctuation, and whitespace.
- printableNoSpaces → const String
- String of ASCII characters which are considered printable except spaces. This is a combination of digits, ascii_letters, and punctuation.
- punctuation → const String
- String of ASCII characters which are considered punctuation characters in the C locale: !"#$%&'()*+,-./:;<=>?@[]^_`{|}~.
- visibleWhitespace → const String
- all Unicode space characters with White_Space=yes
- whitespace → const String
- A string containing all ASCII characters that are considered whitespace. This includes the characters space, tab, linefeed, return, formfeed, and vertical tab.