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

Available on String, provided by the StringExt extension

toDoubleOrNull() double?

Available on String, provided by the StringExt extension

toHexColor() int

Available on String, provided by the StringExt extension

toInt({int? radix}) int

Available on String, provided by the StringExt extension

The radix 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?

Available on String, provided by the StringExt extension