StringExt extension
- on
Properties
- isDouble → bool
-
Available on String, provided by the StringExt extension
no setter - isInt → bool
-
Available on String, provided by the StringExt extension
no setter - notBlank → String?
-
Available on String, provided by the StringExt extension
no setter - notEmpty → String?
-
Available on String, provided by the StringExt extension
no setter
Methods
-
toDouble(
) → double -
toDoubleOrNull(
) → double? -
toHexColor(
) → int -
toInt(
{int? radix}) → int -
Available on String, provided by the StringExt extension
Theradix
must be in the range 2..36. The digits used are first the decimal digits 0..9, and then the letters 'a'..'z' with values 10 through 35. Also accepts upper-case letters with the same values as the lower-case ones. -
toIntOrNull(
{int? radix}) → int?