string class

static class to be used like in python The constants defined as in python https://docs.python.org/3/library/string.html

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

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.
base62digits → const String
chars used by base64 encoding
base64digits → const String
chars used by base64 encoding
digits → const String
The string '0123456789'.
empty → const String
Empty string: ''
hexdigits → const String
The string '0123456789abcdefABCDEF'.
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: !"#$%&'()*+,-./:;<=>?@[]^_`{|}~.
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.