apptreematt
fun String.intOrDefault(defaultValue : Int = 0) : Int { try { return this.toInt() } catch ( e : Exception ) { return defaultValue } }