Slackbot
09/12/2020, 8:25 AMdeactivateduser
09/12/2020, 8:29 AM3bdoelnaggar
09/12/2020, 8:30 AM3bdoelnaggar
09/12/2020, 8:31 AMdeactivateduser
09/12/2020, 8:32 AM"31.2122222".toDoubleOrNull()
will return you the Double
floating point value.... Long does not have floating point, so 31.2122222
will return null. "31123123".toLongOrNull()
should return you the Long
value 🙂.3bdoelnaggar
09/12/2020, 8:33 AM